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 ...
443
votes
40answers
146k 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 ...
379
votes
24answers
110k 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 = ...
374
votes
9answers
253k views
How can I make a redirect page in jQuery/JavaScript?
How can I redirect the user from one page to another using jQuery?
365
votes
23answers
179k 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?
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
217k 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 ...
262
votes
12answers
205k 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 ...
260
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 ...
257
votes
11answers
177k 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 ...
222
votes
11answers
111k 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?
207
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 ...
192
votes
12answers
157k 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();
...
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 ...
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 ...
167
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()
...
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.
...
151
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 ...
140
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 ...
136
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
201k 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"
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?
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, ...
119
votes
11answers
44k views
jQuery SVG vs. Raphael
I'm working on an interactive interface using SVG and JavaScript/jQuery, and I'm trying to decide between Raphael and jQuery SVG. I'd like to know
What the trade-offs are between the two
Where the ...
119
votes
10answers
71k 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. ...
103
votes
8answers
55k 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 & ...
95
votes
12answers
209k views
Check if option is selected with jQuery, if not select a default
Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected.
(The select is generated with a maze of PHP functions in an app I ...
92
votes
4answers
61k 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 ...
92
votes
8answers
111k views
Using core jQuery, how do you remove all the options of a select box, then add one option and select it?
My select box is the following
<Select id="mySelect" size="9" </Select>
thanks
EDIT: This answer was helpful with chaining...however (in IE) .val('whatever') did not select the option ...
91
votes
7answers
53k 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 ...
91
votes
7answers
90k 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:
...
91
votes
16answers
105k 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 ...
89
votes
16answers
15k views
Javascript Unit-testing?
What's the best way to go about running unit tests for Javascript? I've been playing around with Selenium IDE, but it's Firefox-specific. Selenium RC looks... difficult - but is it the best way to ...
88
votes
8answers
187k views
Change the selected value of a drop-down list with jQuery
I have a drop-down list with known values. What I'm trying to do is set the drop down list to a particular value that I know exists using jQuery. Using regular JavaScript, I would do something like:
...
88
votes
4answers
72k views
Escaping HTML strings with jQuery
Does anyone know of an easy way to escape HTML from strings in jQuery? I need to be able to pass an arbitrary string and have it properly escaped for display in an HTML page (preventing ...
87
votes
18answers
4k views
What are the typical reasons Javascript developed on Firefox fails on IE?
I developed some javascript enhanced pages that run fine on recent Firefox and Safari. I missed to check in Internet Explorer, and now I find the pages don't work on IE 6 and 7 (so far). The scripts ...
86
votes
14answers
21k views
Microsoft CDN for jQuery or Google CDN?
Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which ...
83
votes
6answers
32k views
How to distinguish between left and right mouse click with jQuery?
What is the way of obtaining the clicked mouse button with JavaScript using jQuery?
$('div').bind('click', function(){
alert('clicked');
});
this is triggered by both right and left click, what ...
77
votes
9answers
62k views
What is the most efficient way to create HTML elements using jQuery?
Recently I've been doing a lot of modal window pop ups and what not, for which I used jQuery. The method that I used to create the new elements on the page has overwhelmingly been along the lines of:
...
77
votes
10answers
105k views
Obtain form input fields using jQuery?
I have a form with many input fields.
When I catch the submit form event with jQuery, is it possible to get all the input fields of that form in an associative array?
74
votes
8answers
56k 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 ...
73
votes
7answers
115k 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 ...
73
votes
9answers
50k views
Best jQuery rounded corners script?
I've been looking at various scripts for adding automatic rounded corners to a div using jQuery but there are loads of plugins available, none of which seem perfect.
So, does anybody know of a script ...
71
votes
9answers
66k views
How to normalize HTML in JavaScript or jQuery?
Tags can have multiple attributes. The order in which attributes appear in the code does not matter. For example:
<a href="#" title="#">
<a title="#" href="#">
How can I "normalize" the ...