Florian Cargoët
Member since Oct 7, 2009
- Profile: /members/4474-florian-cargo-t.htm
- URL: http://fcargoet.evolix.net
- Comments: 2
Recent Blog Comments By Florian Cargoët
-
Passing A Function To jQuery's Attr() Method For Implicit Iteration
Posted on Oct 7, 2009 at 12:43 PM
Too slow... By the way, I was talking about jQuery 1.3.2.... read more »
-
Passing A Function To jQuery's Attr() Method For Implicit Iteration
Posted on Oct 7, 2009 at 12:41 PM
@Steven: In jQuery.attr you can find a call to jQuery.prop with options[name] (that your passed function) as second parameter. In jQuery.prop you can read : if ( jQuery.isFunction( value ) ) // <- value is the second param value = value.call( elem, i );//here is the call to your passed function... read more »