Tagged Questions
jQuery is a cross-browser JavaScript library that provides abstractions for DOM traversal, event handling, animation, and AJAX interactions for rapid web development.
564
votes
10answers
210k views
How do you test if something is hidden with jQuery?
In jQuery, suppose you have an element of some kind that you're hiding and showing, using .hide(), .show() or .toggle(). How do you test to see if that element is currently hidden or visible on the ...
498
votes
40answers
28k views
jQuery Tips and Tricks [closed]
Syntax
Shorthand for the ready-event by roosteronacid
Line breaks and chainability by roosteronacid
Nesting filters by Nathan Long
Cache a collection and execute commands on the same line by ...
441
votes
40answers
145k views
Which JavaScript framework (jQuery vs Dojo vs … )?
There are a few JavaScript frameworks/toolsets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient; and
others I'm sure.
It certainly seems that jQuery is ascendant in ...
378
votes
24answers
109k 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 = ...
372
votes
9answers
252k views
How can I make a redirect page in jQuery/JavaScript?
How can I redirect the user from one page to another using jQuery?
362
votes
23answers
178k views
Get query string values in JavaScript
Is there a pluginless way of retrieving querystring values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
336
votes
6answers
359k views
$(this) selector and children?
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get the div, I've got this selector:
$(this)
...
325
votes
9answers
28k 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 ...
298
votes
29answers
154k 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 ...
294
votes
11answers
216k 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 ...
287
votes
28answers
22k 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 ...
282
votes
25answers
94k 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 ...
261
votes
12answers
204k views
Check checkbox checked property using jQuery
I need to check the checked property of a checkbox and perform the action based on the checked property using jQuery.
For example, if the age checkbox is checked, then I need to show a textbox to ...
258
votes
26answers
137k views
Good JavaScript IDE with jQuery support [closed]
I'm planning to start learning jQuery (among other things), so I'm looking for a good Javascript editor that can preferably provide some of the following features:
Syntax coloring
Contextual help ...
256
votes
11answers
176k 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.
234
votes
30answers
32k views
Why does everyone like jQuery more than prototype/script.aculo.us or MooTools or whatever?
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 ...
221
votes
11answers
110k 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?
212
votes
6answers
33k 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 ...
206
votes
11answers
241k views
jQuery get select option 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 ...
191
votes
12answers
156k 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();
...
186
votes
17answers
149k 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" ...
185
votes
11answers
76k views
How to debug Javascript/jQuery event bindings with FireBug (or similar tool)
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 ...
177
votes
24answers
10k views
Is jQuery always the answer?
I've come across a couple questions, such as this one, and I really have to wonder why "Use jQuery" seems to be the answer when somebody asks how to do something in JavaScript. I understand that ...
174
votes
8answers
158k 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 = ...
170
votes
23answers
62k views
Graph visualization code in javascript? [closed]
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 ...
166
votes
6answers
34k views
JavaScript: event.preventDefault() vs return false
When I want to prevent other event handlers from executing after certain event is fired I can do one of those (jQuery examples, but this will work in JS in general):
#1 event.preventDefault()
...
157
votes
17answers
124k 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 ...
156
votes
19answers
167k 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.
...
154
votes
13answers
94k 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.
...
150
votes
4answers
50k views
Kill Ajax requests using JavaScript using jQuery
Using jQuery, how do I cancel an Ajax request that I have not yet received the response from?
142
votes
16answers
114k views
jQuery date/time picker
I've been looking around for a decent jQuery plugin that can handle both dates and times. The core UI DatePicker is great, but unfortunately I need to be able to take time in as well.
I've found a ...
141
votes
6answers
16k views
“Breaking” Google By Sending “${” Search Query? [closed]
Well, apparently you can "break" Google by sending it a search query like "${." It strips the Google.com page of its tab separators and whatnot.
Is there any apparent reason for this? I imagine ...
141
votes
18answers
115k 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 ...
139
votes
18answers
54k 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 ...
138
votes
2answers
39k views
jQuery multiple class selector
I want to select all the elements that have these two classes 'a' and 'b'.
So, only the elements that have both classes.
When I use $(".a, .b") it gives me union, but I want intersection.
138
votes
10answers
48k 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?
134
votes
15answers
117k 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 ...
133
votes
9answers
107k views
Best way to remove an event handler in jQuery?
Who knows the answer?
I have an input type="image" which sort of acts like the little cell notes in Excel. If someone enters a number into the text box this input-image is paired with, I setup an ...
132
votes
9answers
200k 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&number=0"
132
votes
12answers
93k 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?
130
votes
6answers
99k views
jQuery get selected text from dropdownlist
How can I get an asp dropdownlist selected text in Jquery, not using selected value?
130
votes
28answers
9k views
jQuery pitfalls to avoid [closed]
I am starting a project with jQuery.
What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project?
130
votes
17answers
61k views
What's the best WYSIWYG Editor for use with jQuery? [closed]
I know there are a quite a few WYSIWYG HTML editors written in JavaScript, but most of them aren't written to take advantage of jQuery. I'm looking to use one in a project I'm working on, and I would ...
130
votes
16answers
43k views
jQuery templating engines
I am looking for a template engine to use client side. I have been trying a few like jsRepeater and jQuery Templates. While they seem to work OK in FireFox they all seem to break down in IE7 when it ...
127
votes
10answers
102k 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 ...
124
votes
11answers
37k 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() {
...
124
votes
5answers
163k views
How to change the href for a hyperlink using jQuery
How can you change the href for a hyperlink using jQuery?
122
votes
10answers
171k 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 ...
122
votes
8answers
146k views
jQuery: How to position one element relative to another?
I have a hidden DIV which contains a toolbar-like menu.
I have a number of DIVs which are enabled to show the menu DIV when the mouse hovers over them.
Is there a built-in function which will move ...
120
votes
15answers
11k views
Where can I learn jQuery? Is it worth it?
I've had a lot of good experiences learning about web development on w3schools.com. It's hit or miss, I know, but the PHP and CSS sections specifically have proven very useful for reference.
Anyway, ...