Removing Toggle Property Of Search Box?
Nov 15, 2010
I'm trying to get a website up and running using WordPress. A particular plug-in for WP makes the site I'm building mobile-phone etc friendly - and I have a question regarding some JS that is part of the plug-in.Before people think badly of me, the licensing terms of the plug-in allow users to modify the code, but the suppliers will not respond for requests for help in doing so. I'm therefore having to see whether I can figure out how to do this myself.If I've understood correctly, the extract of code below will show/hide a search box when the user clicks on the search button on the menu page. However, I would like the search box to always be visible when the user visits the menu page (but not on any other pages).With the extract provided, could anybody tell me please, how to change the code to keep the search box permanently visible? :confused:PS I've only selected what I think are the important lines of code
var touchJS = jQuery.noConflict();
/* Toggling the search bar from within the menu */
touchJS( 'a#tab-search' ).unbind( 'click' ).click( function() {
[code]....
View 2 Replies
ADVERTISEMENT
Apr 27, 2009
I have a question about removing an item from an array.I am looking to remove an item from the array based on the property.Ie.arr = [{a1: 1, a2: 2},{a1: 3, a2: 4}, {a1: 5, a2: 6}]remove first item from array because a1 = 1.I am not entirely sure how to do this. I tried messing around withgrep a bit, but that didn't turn out well.
View 3 Replies
View Related
Jan 4, 2006
currently I have a page with six links. Now since I want to display the imformation on those six links (when each is clicked) in a #mainDiv (below all the links). if figured the most efficient way of doing so was to have all six "links" in six different div's -- all with display: none... and when a user clicks a link I just have the appropriate div set to display: block. Code:
View 38 Replies
View Related
Jun 5, 2010
i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.
<UL>
<table class="mytable" width="100">
<body>
[code]....
View 2 Replies
View Related
Dec 10, 2010
I have a search field on the website, and when I type a word to search, it search good, but after preforming the search, the search term from search text field disappears and become the default 'Search' word.
How can I make search term stay in search field after preforming a search ? For example, when I type into the search field 'JavaScript' I want that term to stay in search field and after the search is done.
View 1 Replies
View Related
Dec 13, 2011
I found this for instant search :
demo : [url]
index.php
Now i just want to edit one thing, when you search for something, results are shown under the search field, when you click on each result, goes to a link.
I want when clicking on a result, not going to link, just show that result string on the search field. where should i edit in script?
View 3 Replies
View Related
Aug 18, 2010
I have created a similar smart search like yellowpages:[URL]... Here is the problem I have with mine:
Lets say I search 'Attorneys' I start typing 'Att' ... then 'Attorneys' shows up in the smart search so I click on it and press enter. The next time I start typing 'Att' my browsers saved search field pops up over the websites smart search. Here is an image which might help explain the problem a bit more:
View 1 Replies
View Related
Feb 22, 2011
I'm extremely new to jquery and trying to write a toggle function without using the built-in functionality. From what I've read, this should be a fairly straightforward exerciseHowever, I'm running an issue. My code doesn't seem to do anything. Not clear to me why because nothing is erroring out? Here's what I've got:
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> // we will add our javascript code here
[code]....
View 1 Replies
View Related
Sep 1, 2011
here is my scenario:
I have a link and a div on a webpage. With the link I want to toggle the content (HTML) of the div. On toggle, I want to load the content from a PHP-file and I want it to load on the toggle, not when the webpage originally loaded (to reduce loading time on the webpage itself).
The file that is loaded on toggle doesn't have to be PHP, but it would help a lot.
View 1 Replies
View Related
Jul 13, 2011
how is clearing search box with click on search results?
jquery:
var strToMatch = $("#hotel").val();
$('.list_name p').each(function () {
if (this.innerHTML.indexOf(strToMatch) > -1) {
[Code]....
View 1 Replies
View Related
May 23, 2011
I have chosen to use Google Custom Search with my website and was given the following code, my question is, how can i pass a search query from my homepage which has a standard form on there to the search page which holds this code?
I am given a search box within this code but would prefer to use my own on the homepage...
<div id="cse" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
[Code]....
View 3 Replies
View Related
Aug 24, 2011
I have a javascript that allows me to search text on a page.What I want to do is to limit the search area and not search the entire page.
Here is an example page:
[URL]
View 1 Replies
View Related
Dec 7, 2011
I have a website that I'm designing where I have the need to search multiple sites at specific times. By this I mean that In some cases, we would want to search only the internet using google, or only search the site that I've created (which currently uses the jse_search.js solution), or only our company's website.
I currently have four different search boxes that will search either the internet, the internal site, a separate internal site, or a third-party website, which all working fine. The problem is that the search boxes take up quite a bit of space, and the layout is becoming cumbersome. Is there a way in Javascript I could use a single search box and a drop-down list to select which method to use? The code I'm currently using is below. With the exception of the Google search function, I've modified some of the site names to general site names and paths to preserve the company's anonymity:
Code in the <head> tag:
<script language="JavaScript1.3" type="text/javascript" src="jse_form.js">
</script>
Code in the <body> tag:
<!--Begin Internal Site Search 1!-->
[Code]...
View 2 Replies
View Related
Aug 27, 2009
is it possible via Javascript to search certain websites with certain keywords without having to use specific search engines?
example search only the following:
1. www.yyy.com
2. www.aaa.com
3. www.zzz.com
for the keyword "Laminat" and open the sites accordingly.
View 8 Replies
View Related
Jan 24, 2011
i want to search the index.xml file throu diff input like combo box and input text shown in the search.html file and output the result in a tale.
search.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Search</title>
<script type="text/javascript" src="search%20xml/search%20xml%20with%20mouseover%20table/searchindex.js"></script>
[Code]...
View 3 Replies
View Related
Sep 28, 2011
I have a page built in Sharepoint. I need to create a little search box within that page so people can search for names on that same page. It's a page with a lot of text, hence why the search feature is needed.
I can only use an XML editor.
View 4 Replies
View Related
Jul 23, 2005
I have an HTML file that has a call to a Javascript function in it as
follows:
<!-- bunch of stuff -->
<script type="text/javascript">doXMLFromString()</script>
<!-- bunch of stuff -->
Now I make a copy of this HTML file by creating a new window and writing
var body = document.body.innerHTML;
printWin.document.write (body);
But this copies the script tag above as well, and then tries to call
that JS function (doXMLFromString). I don't want it to do that.
In other words I dont want that javascript statement to be executed. I
tried removing it from the document (using removechild) however it would
still get called.
How can I stop this?
View 2 Replies
View Related
Jul 23, 2005
Just wondering there is any other way to remove the toolbar from the browser
than using
" ...toolbar=no ..."
in the
window.open(...)
is there a way to do it after the browser opened? (say some Java script)
are there any parameters or style like stuff that can be embedded in the
HTML code and does it when the new page created?
or is the above method the ONLY way?
View 8 Replies
View Related
Dec 26, 2005
I am weak when it comes to regexp but hoped someone might know in this case.
I am trying to take a url like this :
something.lasso?blah=blah&blah2=blah2&sort=hello&blah3=blah3
And remove the &sort=XXX without hurting the rest of the url. The parameter
to be replaced would be a parameter passed to a function. Here is what I
have so far:
function refresh(item) {
current = document.location.href;
if(current.match(item.name+'='))
//pseudo code here
//current.replace(item.name regexp , '');
return (current + "&" + item.name + "=" + item.value);
This function would be fired like this :
All <input type="radio" name="show" value="all"
onclick="document.location=refresh(this);">
Mine <input type="radio" name="show" value="mine"
onclick="document.location=refresh(this);">
View 13 Replies
View Related
May 24, 2006
I've been given a large number of HTML pages. Each page has one or more
tags. When the pages were being built I asked that an ID attribute be
included with each element that will later be referenced. The first
ID'ed element on the page has the ID 'item0', the next 'item1' and so on.
Unfortunately they also included a NAME element which in many cases is
similar to the ID but out by one. That is the first element on the page
has the NAME 'item1', the next 'item2' and so on.
This stuffs up some things that depend on the ID (IE seems to make use
of the NAME instead of the ID when I ask getElementByID). Is there an
"easy" way to remove all the NAME attributes, or at least make them
invisible to IE, on page load?
View 2 Replies
View Related
Apr 4, 2009
I'm having an issue in Internet Explorer to where the javascript i'm using isn't working now. In firefox it works great!
Code:
<script src="::URL::/jscript/php.js" type="text/javascript"></script>
<script language="Javascript">
function gup( name ) {
name = name.replace(/[[]/,"\[").replace(/[]]/,"\]");
[Code]....
I am using php.js from phpjs.org
You can see a live sample by visiting [URL]
View 1 Replies
View Related
Jan 4, 2011
My goal with a script I am writing is to remove signatures from a forum I am a part of. Some of the people abuse it with half a page of stuff and it's out of control. So here is what the HTML source code for it looks like
<table cellSpacing="1" width="100%" border="0" class="tback" cellPadding="2">
<tr>
<td width="100" class="headcell">Author</td>
<td class="headcell">Topic</td>
</tr>[CODE]...
The very bottom where it has the 'span' tag and it says "SEC Champions" is where the Signatures are located. I want to completely remove that using my script and this is what I have right now
function sigRemove() {
var sigs = document.getElementsByTagName('span');
for (var i = 0; i < sigs.length; i++) {
sigs[i].style.display = 'none';}}
I know it's incomplete but I only want to remove that bottom span tag and everything inside of it and not every span tag on the page.
View 8 Replies
View Related
Mar 21, 2004
I am retrieving a memo field from a db and using SS VB writing it to a JS function like so:
document.form.textarea.value = "<%=rs("Story")%>";
The problem I have is if the value of the recordset contains a CR, the function errs. How can I replace the CR with a /n or something similar that fixes this problem?
View 1 Replies
View Related
Mar 28, 2006
I have finally figured out how to make a call to an XML file using AJAX and then bringing it into the browser to manipulate with JavaScript. The only problem I'm having now is that I can't figure out how to remove the whitespaces between nodes so they won't show up as a childNode.
View 1 Replies
View Related
Jul 13, 2007
How do I remove the resulting comma from the output in this sort snippet?
<script type="text/javascript">
var arr = new Array()
arr[1] = "C"
arr[2] = "B"
arr[3] = "A"
document.write(arr.sort())
</script>
Gives me: A, B, C
Needed: A B C
View 1 Replies
View Related
Jun 19, 2010
I'm working on a Wordpress site and am using a photo gallery plugin. However, this plugin, for some reason, generates an empty table row and it's messing with my layout because I'm inserting a background image for each of the "TDs". I don't want to mess w/ the core files since the changes will be gone after the next upgrade. check out these two image links to see exactly what I mean.
[URL]
I know there are ways to dynamically remove elements using DOM. Would I be able to use that method here?
-edit- This gallery is paginated and I just noticed that on the last page, the last row actually contains two pictures and a " ". So, a better question would be: Is there a way to target just the td elements that have in them so I can add a display:none via css?
View 14 Replies
View Related