Tagged Questions
601
votes
29answers
259k views
Get query string values in JavaScript
Is there a plugin-less way of retrieving query string values via jQuery (or without)?
If so, how, and if not what plugin do you recommend?
266
votes
6answers
51k views
event.preventDefault() vs. return false
When I want to prevent other event handlers from executing after a certain event is fired, I can use one of two techniques. I'll use jQuery in the examples, but this applies to plain-JS as well:
#1 ...
253
votes
17answers
196k views
How can I upload files asynchronously with jQuery?
I would like to upload a file asynchronously with JQuery. This is my HTML:
<span>File</span>
<input type="file" id="file" name="file" size="10"/>
<input id="uploadbutton" ...
14
votes
1answer
9k views
How to filter the jqGrid data NOT using the built in search/filter box
I want users to be able to filter grid data without using the intrinsic search box.
I have created two input fields for date (from and to) and now need to tell the grid to adopt this as its filter ...
203
votes
19answers
142k views
How to manage a redirect request after a jQuery Ajax call
Im using $.post() to call a Servlet using Ajax and then use the resulting HTML fragment to replace a div element in the User's current page. However, if the session timeouts the server sends a ...
220
votes
5answers
65k views
Abort Ajax requests using jQuery
Using jQuery, how can I cancel/abort an Ajax request that I have not yet received the response from?
155
votes
19answers
101k views
Convert form data to JS object with jQuery
How do I convert all elements of my form to a JS object?
I'd like to have some way of automatically building a JS object from my form, without having to loop over each element. I do not want a ...
265
votes
12answers
205k views
Serializing to JSON in jQuery
I need to serialize an object to JSON. I'm using jQuery. Is there a "standard" way to do this?
My specific situation: I have an array defined something like this:
var countries = new Array();
...
518
votes
26answers
141k views
What is the most efficient way to clone a JavaScript object?
What is the most efficient way to clone a JavaScript object? I've seen:
obj = eval(uneval(o));
but that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:
obj = ...
88
votes
7answers
30k views
How do I select text nodes with jQuery?
I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?
526
votes
39answers
183k views
Which JavaScript framework (jQuery vs Dojo vs … )? [closed]
There are a few JavaScript frameworks/toolsets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient;
Zepto and
others I'm sure.
It certainly seems that jQuery is ...
353
votes
28answers
190k views
jQuery Grid Recommendations [closed]
What are the most recommended jQuery grid plugins out there? I've been messing around with Flexigrid which seems to be fairly decent. Are there any other noteworthy ones out there I should be looking ...
155
votes
5answers
35k views
Can somebody explain jQuery queue to me?
I found the jQuery.com document on Queue/dequeue is too simple to understand. Can somebody help to explain it a little in more detail? I appreciate it.
186
votes
20answers
208k views
jQuery Event Keypress: Which key was pressed?
With jQuery, how do I find out which key was pressed when I bind to the keypress event?
$('#searchbox input').bind('keypress', function(e) {});
I want to trigger an submit when ENTER is pressed.
...
127
votes
9answers
172k views
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX support.
The Flickr side is working fine, but when I try to $.get(url, callback) from Panoramio, I see an error in ...
127
votes
7answers
78k views
How can I get jQuery to perform a synchronous, rather than asynchronous, AJAX request?
I have a javascript widget witch provides standard extension points. One of them is the beforecreate function. It should return false to prevent an item from being created.
I've added an AJAX call ...
142
votes
12answers
86k views
jQuery Set Cursor Position in Text Area
How do you set the cursor position in a text field using jQuery? I've got a text field with content, and I want the users cursor to be positioned at a certain offset when they focus on the field. ...
373
votes
10answers
35k views
Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail
What would be a good way to attempt to load the hosted jQuery at Google (or other Google hosted libs), but load my copy of jQuery if the Google attempt fails?
I'm not saying Google is flaky. There ...
379
votes
26answers
122k views
How to format a JSON date?
I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
104
votes
8answers
48k views
jQuery - Check if element is visible after scrolling
I'm loading elements via ajax. Some of them are only visible if you scroll down the page.
Is there any way I can know if an element is now in the visible part of the page?
EDIT:
freakytard solution ...
118
votes
7answers
117k views
jQuery/JavaScript: accessing contents of an iframe
I would like to manipulate the html inside an iframe using jquery.
I thought I'd be able to do this by setting the context of the jQuery function to be the document of the iframe, something like:
...
169
votes
14answers
121k views
Using jQuery to center a DIV on the screen
How do I go about setting a <div> in the center of the screen using jQuery?
132
votes
12answers
74k views
Preloading images with jQuery
I'm looking for a quick and easy way to preload images with JavaScript. I'm using jQuery if that's important.
I saw this here (http://nettuts.com...):
function complexLoad(config, fileNames) {
for ...
117
votes
15answers
128k views
jQuery animate backgroundColor
I am trying to animate a change in backgroundColor using jQuery on mouseover.
I have checked some example and I seem to have it right, it works with other properties like fontSize, but with ...
131
votes
8answers
77k views
JavaScript/jQuery HTML Encoding
I'm using Javascript to pull a value out from a hidden field and display it on a textbox
The value in the hidden field is encoded.
e.g.
<input id='hiddenId' type='hidden' value='chalk & ...
186
votes
22answers
73k views
How to detect a click outside an element?
I have some HTML menus, which I show completely when a user clicks on the head of these menus. I would like to hide these elements when the user clicks outside the menus' area.
Is something like this ...
122
votes
5answers
91k views
jQuery selector regular expressions
I am after documentation on using wildcard or regular expressions (not sure on the exact terminology) with a jQuery selector.
I have looked for this myself but have been unable to find information on ...
180
votes
19answers
146k views
Resetting a multi-stage form with jQuery
I have a form with a standard reset button coded thusly:
<input type="reset" class="button standard" value="Clear" />
Trouble is, said form is of the multi-stage sort, so if a user fills out ...
67
votes
5answers
152k views
jQuery .ready in a dynamically inserted iframe
We are using jQuery thickbox to dynamically display an iframe when someone clicks on a picture. In this iframe, we are using galleria a javascript library to display multiple pictures.
The problem ...
61
votes
8answers
53k views
jQuery: Can't append <script> element
Any idea why the piece of code below does not add the script element to the DOM?
var code = "<script></script>";
$("#someElement").append(code);
112
votes
15answers
37k views
Get selected element's outer HTML
I'm trying to get the HTML of a selected object with jQuery. I am aware of the .html() function; the issue is that I need the HTML including the selected object (a table row in this case, where ...
77
votes
22answers
107k views
Get real image width and height with JavaScript in Safari/Chrome?
I am creating a jQuery plugin.
How do I get real image width and height with Javascript in Safari?
Following works with Firefox 3, IE7 and Opera 9:
var pic = $("img")
// need to remove these in of ...
566
votes
9answers
332k views
How can I make a redirect page in jQuery/JavaScript?
How can I redirect the user from one page to another using jQuery?
176
votes
13answers
114k views
What is the best back button jQuery plugin?
I have found two plugins that enable the browser's back button to work across ajax interactions, but I can't determine which is better and why. The two plugins are history_remote and the history.
...
370
votes
15answers
267k views
Add table row in jQuery
What is the best method in jQuery to add an additional row to a table as the last row?
Update
Is this acceptable:
$('#myTable').append('<tr><td>my data</td><td>more ...
87
votes
10answers
162k views
How to show loading spinner in jQuery?
In Prototype I can show a "loading..." image with this code:
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function ...
54
votes
16answers
41k views
JQuery: Selecting Text in an Element (akin to highlighting with your mouse)
I would like to have users click a link that then selects the html text in another element (NOT an input). By "select" I mean the same way you would select text by dragging your mouse over it. This ...
55
votes
4answers
10k views
Jquery live() vs delegate()
I've read some posts here and on the web about the differences of live() and delegate().
However I haven't found the answer I'm looking for (if this is a dupe please tell me).
I know the difference ...
142
votes
11answers
44k views
jQuery $(document).ready and UpdatePanels?
I'm using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in $(document).ready . For example:
$(function() {
...
76
votes
8answers
41k views
Comet and jQuery [closed]
I've done some research into server push with javascript and have found the general consensus to be that what I'm looking for lies in the "Comet" design pattern. Are there any good implementations of ...
171
votes
2answers
21k views
What's the Hi/Lo algorithm?
What's the Hi/Lo algorithm?
I've found this in the NHibernate documentation (it's one method to generate unique keys, section 5.1.4.2), but I haven't found any good explanation of how does it work.
...
117
votes
3answers
51k views
Official way to ask jQuery wait for all images to load before executing something
In jQuery when you do this:
$(function() {
alert("DOM is loaded, but images not necessarily all loaded");
});
It waits for the DOM to load and executes your code. If all the images are not ...
209
votes
26answers
80k views
Graph visualization code in javascript?
Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph ...
296
votes
15answers
136k views
Is there an “exists” function for jQuery
So I know that you can do:
if ($(selector).length>0) {
// Do something
}
But is there a more elegant method?
82
votes
7answers
34k views
Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)?
I use a datepicker for choosing an appointment day. I already set the date range to be only for the next month. That works fine. I want to exclude Saturdays and Sundays from the available choices. ...
86
votes
7answers
27k views
$(document).ready equivalent without jQuery
I have a script that uses $(document).ready, but doesn't use anything else from jQuery. I'd like to lighten it up by removing the jquery dependency.
How can I implement that functionality without it? ...
90
votes
10answers
68k views
How can I override the OnBeforeUnload dialog and replace it with my own?
I need to warn users about unsaved changes before they leave a page (a pretty common problem).
window.onbeforeunload=handler
This works but it raises a default dialog with an irritating standard ...
15
votes
5answers
3k views
What is the need of JSF. When UI can be achieved from css html javascript jQuery?
I was reading about JSF that its a UI framework and provides some UI components. But how is it better or different from number of components that can are available from extjs or jQuery or combination ...
8
votes
7answers
5k views
How do I build a JSON object to send to an AJAX WebService?
After trying to format my JSON data by hand in javascript and failing miserably, I realized there's probably a better way. Here's what the code for the web service method and relevant classes looks ...
368
votes
13answers
259k views
How do I check a checkbox with jQuery or JavaScript?
I want to do something like this
$(".myCheckBox").checked(true);
or
$(".myCheckBox").selected(true);
Is such a thing built into jQuery?
To clarify, I wish to set the value.