jQuery is a cross-browser JavaScript library that facilitates DOM traversal, event handling, animation and AJAX interactions.

learn more… | top users | synonyms (3) | jquery jobs

1803
votes
17answers
510k views

Testing if something is hidden with jQuery

In jQuery, it is possible to toggle the visibility of an element. You can use the functions .hide(), .show() or .toggle(). How you would test if an element has been hidden or shown using jQuery?
1555
votes
47answers
543k views

How can I get query string values?

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?
1336
votes
12answers
675k views

How can I make a redirect page in jQuery/JavaScript?

How can I redirect the user from one page to another using jQuery?
910
votes
24answers
640k views

Check checkbox checked property using jQuery

I need to check the checked property of a checkbox and perform an action based on the checked property using jQuery. For example, if the age checkbox is checked, then I need to show a textbox to ...
883
votes
8answers
682k views

$(this) selector and children?

I have a layout similar to this <div id="..."><img src="..."></div> I would like to use a jQuery selector to select the child img inside of the div on click To get the div, I've ...
867
votes
22answers
581k 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); I wish to set the value. Is such a thing built into jQuery?
720
votes
30answers
207k 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 ...
692
votes
17answers
431k 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 ...
656
votes
8answers
152k 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 ...
613
votes
18answers
378k 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" ...
571
votes
17answers
214k views

Is there an “exists” function for jQuery?

How can I check the existence of an element in jQuery? The current code that I have is this: if ($(selector).length>0) { // Do something } Is there is a more elegant way to approach this? ...
524
votes
14answers
58k 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 ...
513
votes
16answers
349k views

How can I get which radio is selected via jQuery?

I have two radio buttons and want to post the value of the selected one, how can I get the value with jQuery? I can get all of them like this: $("form :radio") But how do I know which one is ...
497
votes
6answers
68k views

.prop() vs .attr()

Ok. So jQuery 1.6 has the new function prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: ...
468
votes
15answers
481k views

jQuery get specific option tag text

All right, say I have this: <select id='list'> <option value='1'>Option A</option> <option value='2'>Option B</option> <option value='3'>Option ...
467
votes
5answers
133k views

jQuery multiple class selector

I want to select all the elements that have the two classes a and b. <element class="a b"> So, only the elements that have both classes. When I use $(".a, .b") it gives me the union, but I ...
448
votes
6answers
120k 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?
442
votes
11answers
353k 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(); ...
439
votes
10answers
317k views

Get selected text from dropdownlist using jQuery

How can I get an ASP dropdownlist selected text in jQuery, not using the selected value?
430
votes
9answers
89k views

WebKit issues with event.layerX and event.layerY

I just noticed that I get tons of deprecated warnings in the latest (canary) build of Chrome. event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the ...
427
votes
10answers
323k views

jQuery document.createElement equivalent?

I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on. var d = document; var odv = d.createElement("div"); odv.style.display = "none"; this.OuterDiv = odv; var t = ...
396
votes
3answers
39k views

How do I “think in AngularJS” if I have a jQuery background?

Suppose I'm familiar with developing client-side applications in jQuery, but now I'd like to start using AngularJS. Can you describe the paradigm shift that is necessary? Here are a few questions ...
387
votes
20answers
464k views

How to get the current URL in jQuery?

I am using jQuery. I'd like to get the path of the current URL and assign it to a variable. Example URL: http://localhost/menuname.de?foo=bar&amp;number=0
381
votes
28answers
140k 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 ...
377
votes
28answers
30k views

Current commonly accepted best practices around code organization in JavaScript [closed]

As JavaScript frameworks like jQuery make client side web applications richer and more functional, I've started to notice one problem... How in the world do you keep this organized? Put all your ...
369
votes
9answers
241k views

Best way to remove an event handler in jQuery?

I have an input type="image". This acts like the cell notes in Microsoft Excel. If someone enters a number into the text box that this input-image is paired with, I setup an event handler for the ...
363
votes
25answers
181k 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 ...
348
votes
23answers
217k 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 ...
340
votes
15answers
139k views

How to debug Javascript/jQuery event bindings with FireBug (or similar tool) [closed]

I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and ...
337
votes
21answers
227k views

What is the best way to add options to a select from an array with jQuery?

What is the best method for adding options to a select from a JSON object using jQuery? I'm looking for something that I don't need a plugin to do, but would also be interested in the plugins that ...
331
votes
13answers
412k views

Creating a div element in jQuery [closed]

How do I create a div element in jQuery?
329
votes
18answers
120k views

Remove close button on jQueryUI Dialog?

How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
328
votes
16answers
209k 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?
328
votes
5answers
331k views

How to change the href for a hyperlink using jQuery

How can you change the href for a hyperlink using jQuery?
327
votes
28answers
125k 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 ...
323
votes
20answers
330k 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. ...
302
votes
5answers
176k views

How to move an element into another element?

I would like to move one DIV element inside another. For example, I want to move this (including all children): <div id="source"> ... </div> into this: <div id="destination"> ... ...
298
votes
18answers
169k 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 ...
296
votes
13answers
245k views

Is there a link to the “latest” jquery library on Google APIs?

I use the following for a jquery link in my <script> tags: http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js Just wondered if anyone had discovered whether there's a link to the ...
292
votes
28answers
46k views

Why does everyone like jQuery more than prototype/script.aculo.us or MooTools or whatever? [closed]

It seems that jQuery has taken the throne for JavaScript frameworks and I was wondering exactly why. Is there a technical reason for this or is it just that they have evangelists? I have been really ...
284
votes
5answers
172k views

How to disable an input with jQuery?

$input.disabled = true; or $input.disabled = "disabled"; Which is the standard way? And,reversely,how to enable an input?
280
votes
5answers
59k 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.
269
votes
6answers
84k views

Downloading jQuery CSS from Google's CDN

I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself? Also if I use Google to ...
267
votes
9answers
327k 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 ...
260
votes
3answers
83k views

Are there hosted jQuery UI themes anywhere? [duplicate]

Possible Duplicate: Downloading jQuery CSS from Google's CDN I'm using Google-hosted jQuery and jQueryUI, but I'm wondering if there are hosted jQueryUI themes anywhere? I'd like to ...
257
votes
12answers
368k views

jQuery Ajax error handling, show custom exception messages

Is there some way I can show custom exception messages as an alert in my jQuery Ajax error message? For example, if I want to throw an exception on the server side via Struts by "throw new ...
252
votes
13answers
157k 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. ...
249
votes
9answers
214k 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: ...
246
votes
21answers
107k 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 ...
241
votes
40answers
344k views

How to allow only numeric (0-9) in HTML inputbox using jQuery?

I am creating a web page where I have an input text field in which I want to allow only numeric characters like (0,1,2,3,4,5...9) 0-9. How can I do this using jQuery?

1 2 3 4 5 6336