933
votes
38answers
423k views

RegEx match open tags except XHTML self-contained tags

I need to match all of these opening tags: <p> <a href="foo"> But not these: <br /> <hr class="foo" /> I came up with this and wanted to make sure I've got it right. I am ...
613
votes
90answers
70k views

Why not use tables for layout in HTML? [closed]

It seems to be the general opinion that tables should not be used for layout in HTML. Why? I have never (or rarely to be honest) seen good arguments for this. The usual answers are: It's good to ...
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 ...
429
votes
6answers
10k views

How does this CSS triangle shape work?

There're plenty of different CSS shapes over at http://css-tricks.com/examples/ShapesOfCSS/ and I'm particularly puzzled with a triangle: #triangle-up { width: 0; height: 0; ...
378
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?
363
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?
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 ...
306
votes
9answers
293k 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 :) ...
306
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
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 ...
281
votes
13answers
19k views

How to Manage CSS Explosion

I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make ...
279
votes
38answers
74k 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 ...
267
votes
9answers
173k views

How to set cellpadding & cellspacing in CSS?

How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?
262
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
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
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
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.
251
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 ...
235
votes
2answers
69k 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 ...
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
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?
227
votes
18answers
37k 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 ...
226
votes
14answers
122k 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 ...
224
votes
22answers
126k views

How to align checkboxes and their labels consistently cross-browsers

This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
223
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 ...
223
votes
14answers
34k views

Can I comment a JSON file?

Can I comment a JSON file? If so, how?
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?
213
votes
13answers
81k views

css rule to disable text selection highlighting

For anchors that act like buttons (for example the Question, Tags, User, etc at the top of the SO page) or tabs, is there a CSS standard way to disable the highlighting effect if the user accidentally ...
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 ...
205
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 ...
205
votes
14answers
79k views

Comparison between Corona, Phonegap, Titanium [closed]

I am a web developer and I want to move my web products to iPhone. One of the products is like Google Maps: show map on the phone screen, you can drag or resize the map and view some information that ...
191
votes
3answers
45k views

Change an input's HTML5 placeholder color with CSS

Chrome supports the placeholder attribute on input[type=text] elements (others probably do too). But the following CSS doesn't do diddly squat to the placeholder's value: <style> ...
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(); ...
191
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 ...

1 2 3 4 5 5300