201
votes
98answers
26k views
Hidden Features of JavaScript?
What "Hidden Features" of JavaScript do you think every programmer should know?
After having seen the excellent quality of the answers to the following questions I thought it was …
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 …
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? …
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 …
62
votes
61answers
5k views
What JavaScript library would you choose for a new project and why?
There seem to be a lot of choices now for DOM manipulation, Ajax and effects. Has anyone any experience of the different options and their pros and cons?
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 organize …
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 …
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?
42
votes
4answers
4k views
Problems with HTML <marquee> tag
Actually I am trying to move some box alternatively with in another box. I made it work, but both the blocks do not interrupt each other. What should I do? How can I make the block …
42
votes
28answers
9k views
Href for Javascript links: “#” or “javascript:void(0)”?
When building a link that has the sole purpose to run javascript, is it better to:
<a href="#" onclick="myJsFunc();">Link</a>
Or
<a href="javascript:void(0)" onc …
41
votes
14answers
3k views
Frame Buster Buster … buster code needed
Let's say you don't want other sites to "frame" your site in an <iframe>:
<iframe src="http://yourwebsite.com"></iframe>
So you insert anti-framing, frame bust …
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 jQuer …
38
votes
11answers
2k views
Javascript === vs == : Does it matter which “equal” operator I use?
I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing 'idSele_UNVE …
36
votes
7answers
2k views
How does a javascript closure work ?
Like the old Albert said : "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well I tried to explain JS closures to a 27 years old friend and c …
35
votes
9answers
3k views
Google’s Imageless Buttons…
There have been a few articles recently about Google's new imageless buttons:
http://stopdesign.com/archive/2009/02/04/recreating-the-button.html
http://stopdesign.com/eg/buttons …
