Tagged Questions
986
votes
35answers
437k 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 ...
637
votes
90answers
75k 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 ...
502
votes
40answers
29k 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 ...
472
votes
19answers
60k 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 ...
467
votes
40answers
155k views
Which JavaScript framework (jQuery vs Dojo vs … )? [closed]
There are a few JavaScript frameworks/toolsets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient;
Zepto and
others I'm sure.
It certainly seems that jQuery is ...
431
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;
...
406
votes
24answers
116k 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 = ...
402
votes
9answers
268k views
How can I make a redirect page in jQuery/JavaScript?
How can I redirect the user from one page to another using jQuery?
394
votes
27answers
194k 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?
359
votes
30answers
23k 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"?
352
votes
7answers
53k 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.
348
votes
5answers
51k 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 ...
347
votes
33answers
241k 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)" ...
331
votes
9answers
316k 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 :) ...
327
votes
3answers
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
99answers
61k 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 ...
309
votes
29answers
162k 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 ...
306
votes
11answers
227k 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 ...
302
votes
9answers
187k 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?
298
votes
11answers
55k 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 ...
289
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 ...
287
votes
13answers
20k 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 ...
285
votes
38answers
78k 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 ...
283
votes
16answers
51k 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 ...
279
votes
15answers
221k 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 ...
277
votes
11answers
193k 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.
269
votes
8answers
176k 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.
268
votes
4answers
25k views
Can anyone explain these bizarre Javascript behaviours mentioned in the 'Wat' talk for CodeMash 2012?
The talk is here: https://www.destroyallsoftware.com/talks/wat
It basically points out a few bizarre quirks with Ruby and Javascript.
I have made a JSFiddle of the results here: ...
268
votes
26answers
144k 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 ...
266
votes
20answers
25k 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 == ...
260
votes
20answers
59k 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 ...
258
votes
10answers
42k 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 ...
251
votes
2answers
73k 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 ...
249
votes
19answers
40k 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
...
246
votes
16answers
153k 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
{
...
245
votes
15answers
130k 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 ...
239
votes
8answers
7k views
Is the recommendation to include CSS before JavaScript invalid?
In countless places online I have seen the recommendation to include CSS prior to JavaScript. The reasoning is generally, of this form:
When it comes to ordering your CSS and JavaScript, you want ...
239
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 ...
234
votes
14answers
89k 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 ...
234
votes
14answers
36k views
231
votes
22answers
131k 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 ...
231
votes
12answers
145k 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++) {
...
229
votes
12answers
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?
229
votes
12answers
116k 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?
225
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 ...
221
votes
10answers
36k 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 ...
220
votes
18answers
271k 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. ...
216
votes
11answers
256k 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 ...
213
votes
14answers
83k 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 ...
208
votes
3answers
50k 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>
...