JavaScript is the common name for the language used initially for scripting in web browsers. It is NOT the same as Java. It can also be used to write server applications (e.g. node.js or CouchApps). Use this tag for questions regarding ECMAScript and its dialects/implementations (but excluding ActionScript and JScript).

learn more… | top users | synonyms (5)

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 ...
447
votes
19answers
56k views

How do JavaScript closures 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 JavaScript closures to a 27-year old friend and completely ...
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?
349
votes
30answers
22k views

What should every JavaScript programmer know? [closed]

Is there a set of things that every JavaScript programmer should know to be able to say "I know JavaScript"?
337
votes
7answers
52k views

Can you explain why ++[[]][+[]]+[+[]] = 10

++[[]][+[]]+[+[]] is valid and return "10" in JavaScript (more example here: http://sla.ckers.org/forum/read.php?24,33349,33405). Can you explain why? I don't understand what's happening here.
324
votes
2answers
27k views

Why aren't ◎ܫ◎ and ☺ valid JavaScript variable names?

I noticed that in Internet Explorer (but, unfortunately, not in the other browsers I tested), you can use some Unicode variable names. This made my day, and I was absolutely delighted that I could ...
312
votes
33answers
223k views

Href for JavaScript links: “#” or “javascript:void(0)”?

When building a link that has the sole purpose to run JavaScript code, is it better to <a href="#" onclick="myJsFunc();">Link</a> or <a href="javascript:void(0)" ...
312
votes
99answers
60k views

Hidden Features of JavaScript? [closed]

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 time to ask it for ...
304
votes
9answers
292k views

JavaScript: string contains

How can I check if one string contains another substring in JavaScript? Usually I would expect a String.contains() method, but there doesn't seem to be one. Edit: thanks for all the answers :) ...
304
votes
5answers
46k views

What does “use strict” do in javascript, and what is the reasoning behind it?

Recently I ran some of my javascript code through Crockford's JSLint, and it gave the following error: Problem at line 1 character 1: Missing "use strict" statement. Doing some searching, I ...
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 ...
279
votes
38answers
73k views

Best resources to learn JavaScript [closed]

The question says it all really, I'm looking for book recommendations, video tutorials etc. I've been programming since I was about six so I don't need a book that spends 4 pages on for loops (thought ...
261
votes
16answers
48k views

How do I get started with Node.js

Are there any good resources to get started with Node.JS? Any good tutorials, blogs or books? Of course, I have visited http://nodejs.org/, but I didn't think the documentation they have is a good ...
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 ...
259
votes
11answers
47k views

Knockout.js vs Backbone.js (vs ?) [closed]

I'm a long-time developer who's getting more and more into in-browser development. (The modern tools are awesome!) I need to build some bigger, longer-running client-side interactions to go with my ...
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.
250
votes
20answers
22k 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_UNVEHtype.value.length == ...
249
votes
20answers
56k views

How to create a GUID / UUID in Javascript?

I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number generator is, etc.. The ...
247
votes
9answers
166k views

How do you get a timestamp in JavaScript?

How can I get a timestamp in JavaScript? Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
239
votes
9answers
39k views

JavaScript: var functionName = function() {} vs function functionName() {}

I've recently started maintaining someone else's JavaScript code. I'm fixing bugs, adding features and also trying to tidy up the code and make it more consistent. The previous developer uses two ...
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 ...
233
votes
2answers
68k views

How to remove a property from a javascript object

Say I create an object thus: var myJSONObject = {"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"}; What is the best way to remove the property 'regex'? i.e. I would like to ...
231
votes
16answers
143k views

How to Copy to Clipboard in JavaScript?

What is the best way to copy text to the clipboard? (multi-browser) I have tried: function copyToClipboard(text) { if (window.clipboardData) // IE { ...
227
votes
13answers
15k views

Why does [1,2] + [3,4] = “1,23,4” in JavaScript?

I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug: [1,2] + [3,4] It responded with: "1,23,4" What is going on?
226
votes
18answers
36k views

Looking for a better JavaScript unit test tool

Let's consider the state of JavaScript unit tests and testing tools. JsUnit We already use it for some of our js code. Pros can be invoked from an ant build file launches browser to run the tests ...
225
votes
14answers
121k views

Detecting an undefined object property in JavaScript

What's the best way of checking if an object property in JavaScript is undefined? Sorry, I initially said variable rather than object property. I believe the same == undefined approach doesn't work ...
222
votes
24answers
13k views

Is there a better way of writing v = (v == 0 ? 1 : 0);

I want to toggle a variable between 0 and 1. If it's 0 I want to set it to 1, else if it's 1 I want to set it to 0. This is such a fundamental operation that I write so often I'd like to investigate ...
222
votes
14answers
34k views

Can I comment a JSON file?

Can I comment a JSON file? If so, how?
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?
211
votes
12answers
135k views

array.contains(obj) in JavaScript

What is the most concise and efficient way to find out if a JavaScript array contains an obj? This is the only way I know to do it: contains(a, obj) { for (var i = 0; i < a.length; i++) { ...
208
votes
18answers
254k views

Validate numbers in JavaScript - IsNumeric()

What's the cleanest, most effective way to validate decimal numbers in JavaScript? Bonus points for: Clarity. Solution should be clean and simple. Cross-platform. Test cases: 01. ...
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 ...
204
votes
10answers
33k views

What is node.js?

I don't fully get what node.js is all about. Maybe it's because I am mainly a web based business app developer. Can someone please explain what it is and the use of it? Thanks. My understanding so ...
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(); ...
190
votes
9answers
19k views

Why don't self-closing script tags work?

What is the reason browsers do not correctly recognize: <script src="foobar.js" /> // self-closing script tag Only this is recognized: <script src="foobar.js"></script> Is it ...
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 ...
182
votes
12answers
4k views

Why does (0 < 5 < 3) return true?

This may be a stupid question but I was playing around in jsfiddle.net and I'm curious as to why this returns true? if(0 < 5 < 3) { alert("True"); } So does this - if(0 < 5 < 2) { ...
181
votes
6answers
92k views

How to encode a URL in Javascript?

How do you safely encode a URL using Javascript such that it can be put into a GET string? var myUrl = "http://example.com/index.html?param=1&anotherParam=2"; var myOtherUrl = ...
181
votes
17answers
139k views

What is the best way to check for an empty string in JavaScript?

I saw this thread, but I didn't see a JavaScript specific example. Is there a simple string.Empty in JavaScript, or is it just checking for "" ?
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 ...
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() ...
166
votes
12answers
257k views

Change an element's CSS class with JavaScript

How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
164
votes
30answers
41k views

JavaScript Chart Library

Would anyone recommend a particular JavaScript charting library - specifically one that doesn't use flash at all?

1 2 3 4 5 3405