133 results
tagged
javascript
javascript - Is it bad practice to use the same variable name in multiple for-loops? - Stack Overflow
January 10, 2014 at 9:11:58 AM EST
*
FILLER
.prop() | jQuery API Documentation
-
The .prop() method gets the property value for only the first element in the matched set.
-
$( elem ).prop( "checked" ) true (Boolean) Will change with checkbox state
-
$( elem ).attr( "checked" ) (1.6+) "checked" (String) Initial state of the checkbox; does not change
According to the W3C forms specification, the checked attribute is a boolean attribute, which means the corresponding property is true if the attribute is present at all—even if, for example, the attribute has no value or is set to empty string value or even "false". This is true of all boolean attributes.
January 25, 2013 at 11:34:07 AM EST
*
FILLER
Polyfilling HTML5 and CSS3 with Modernizr | Joe Zim's JavaScript Blog
September 8, 2012 at 10:52:56 AM EDT
*
FILLER
Why a JavaScript hater thinks everyone needs to learn JavaScript in the next year - O'Reilly Radar
FILLER
jQuery Fundamentals
FILLER
A crash course in how DOM events work - Jupiter JavaScript Consulting
October 19, 2010 at 1:07:25 PM EDT
*
FILLER
JQuery HowTo: jQuery & Cookies (get/set/delete & a plugin)
October 13, 2010 at 1:18:04 PM EDT
*
FILLER
How Good C# Habits can Encourage Bad JavaScript Habits: Part 1 | Enterprise jQuery
October 13, 2010 at 1:04:57 PM EDT
*
FILLER
rmurphey - adventures in front-end consulting
var foo = 'hello'; (function(f) { var foo = f || 'world'; console.log(foo); })(foo);
October 7, 2010 at 3:45:42 PM EDT
*
FILLER