Skip to content Skip to sidebar Skip to footer

How To Change The Name Field Of An In An Ajax-driven Page?

For this target page (Sorry but SO doesn't allow hyperlinks to 62.0.54.118): http://62.0.54.118/search?&q=42&oq=42&sourceid=chrome&ie=UTF-8&filter=0 , I want t

Solution 1:

If the input name is just q, by itself, then merely change the waitForKeyElements call to:

waitForKeyElements ("input[name='q']", changeLinkQuery);

So that it looks for exactlyq, rather than a q anywhere in the string.


If that's not exactly the name of that <input>, comment below.

Post a Comment for "How To Change The Name Field Of An In An Ajax-driven Page?"