Changes between Version 1 and Version 2 of Ticket #8039, comment 2
- Timestamp:
- Jan 24, 2011, 6:44:01 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8039, comment 2
v1 v2 6 6 }}} 7 7 8 ( change {{{ Sizzle }}} to {{{ jQuery.find }}} and you can monkey patch this bug on your own page: seen on http://jsfiddle.net/gnarf/XzGcW/ 1/ )8 ( change {{{ Sizzle }}} to {{{ jQuery.find }}} and you can monkey patch this bug on your own page: seen on http://jsfiddle.net/gnarf/XzGcW/2/ ) 9 9 10 10 Also, I'm not really sure why the default behavior in the attr function around ~790 of sizzle.js prefers to use {{{ elem[ name ] }}} over {{{ elem.getAttribute( name ) }}} but switching this to prefer {{{ elem.getAttribute }}} may fix the need to have {{{ attrHandle }}} at all since both the current one (href) and the proposed one for type just {{{ return .getAttribute() }}}