1
vote
Set default value for Search field - Please Help!
Sounds like you just need to set the initial value to Search, directly in the input tag, like so:
<input autocomplete="off" class="blank" id="searchq" name="searchq" …
1
vote
How do I get the contents of an <iframe> containing a different site?
What you are trying (in a sense) is cross-domain communication. This won't work in the normal way you've tried (due to the same-origin policy as noted by altCognito), but there are some solutions …
0
votes
How do I wrap a page element with a dynamically generated element using jQuery?
From the documentation, it appears that wrap() only accepts a DOM element or a string. You are passing it a jQuery object …
0
votes
loading image before switching div background in jquery
You could define a CSS class with the background-image property set to the image, and then in your updateImg() function, set the class of that div instead of directly modifying the property. This …
0
votes
JQuery/Javascript works on & off
Is it possible that you are linking to (some of) the script files using a src that points to a file on your local disk/HDD? If so, that would explain why it works only on your machine, as then only …
1
vote
Jquery Onclick and reference to the object clicked
Yes, the this keyword references the DOM element that was clicked. You can "wrap" it like this:
$(this)
This will allow you to treat it as a jQuery o …
1
vote
Removing unwanted characters from textbox with JQuery
You can use the charCodeAt() method combined with the leng …
0
votes
Convert something to Jquery object
You can just wrap it like this:
var jQueryItem = $(item);
where item is a DOM element. In fact, you'll find yourself doing this a lot in callback fun …
0
votes
1
vote
jQuery.get() method doesn’t want to work
Try using something like this, to make the call when the DOM is ready.
<script type="text/javascript">
$(function()
{
$.get("http://www.walkscore.com/tile/show-tile.php?wsid=5 …
1
vote
$.ajax call error in IE but not FireFox
Not sure if this is related to the problem, but the contentType parameter specifies the MIME type of the data being sent to the server, not being received.
…
0
votes
JQuery - getting the parent div from a nested element ID
You can use this:
var searchBox = $('#searchBox');
// Have the searchBox jQuery object, so find the ancestors that match a specific selector.
var parentDiv = searchBox.parents('div …
3
votes
How can you act only on those elements that are in a particular view state in JQuery?
You could use the :visible pseudo-selector.
So something like this:
$(".pie").click(function ()
{ …
0
votes
Using variables in multiple function
The problem is id doesn't exist in the current scope of the second function; it's only been defined in the first.
The only way to do it is to either define id at …
2
votes
Feature detection in jquery : test if browser return nodes of type Text_Node
$('td') will always return a jQuery object, not an actual DOM element or node. jQuery does this in order to standardize behaviour and help alleviate the need for browser-specific handling of diffe …
