87
votes
24answers
5k views
jQuery Tips and Tricks
In the spirit of all the meta-questions of tips and tricks for various languages:
No conflict-mode
jQuery.noConflict();
"Run this function to give control of the $ variable back to whichever …
86
votes
27answers
12k views
Why does everyone like jQuery more than prototype/script.aclo.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 …
70
votes
18answers
6k 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 …
57
votes
23answers
4k views
Javascript - How do you organize this mess?!?
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 …
47
votes
12answers
3k views
Where can I learn JQuery? is it worth it?
Hey, 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.
…
46
votes
25answers
2k views
jQuery pitfalls to avoid
I am starting a project with jQuery.
What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project?
38
votes
15answers
10k views
Which Javascript framework (jQuery vs Dojo vs … )?
There are a few Javascript frameworks/toolets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient; and
others I'm sure.
It certainly seems that jQuery is ascendant in …
33
votes
8answers
10k views
What is the most efficent 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 = …
30
votes
7answers
2k views
How do you get JavaScript/jQuery Intellisense Working in VS 2008?
I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery …
28
votes
9answers
14k views
jQuery Grid Recommendations
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 …
23
votes
11answers
2k views
When to prefer JSON over XML?
My requirement is just to display a set of values retrieved from database on a spread. I am using jquery.
22
votes
7answers
17k views
jQuery add table row
What is the best method in jQuery to add an additional row to a table as the last row?
20
votes
11answers
1k views
How can I control IE6+jQuery+jQuery-ui memory leaks ?
Here's a sample page with a couple datepickers. Here's the Drip result for that:
This page leaks indefinitely in IE6sp1 when I click the Refresh button repeatedly (IE6sp3+, Opera 9, Chrome2, and …
20
votes
10answers
1k 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 …
18
votes
12answers
3k views
Where do you include the jQuery library from? Google JSAPI?
There are a few ways to include jQuery and jQuery UI and I'm wondering what people are using?
Google JSAPI
jQuery's site
your on site/server
another CDN
I have recently been using Google JSAPI, …
