Displaying 1 result from an estimated 1 matches for "el_extend".
Did you mean:
fp_extend
2006 Apr 25
2
issue with $() and child nodes on ie
...ion and not just a ''true'' flag
then ie won''t mysteriously place it on unextended elements.
For legacy reasons, I map $() to el() in my library. I''ve wrapped $
() with a fix that could easily be placed within $() itself.
// Same as $, but fixes ie bugs,
var el_extended = function() { return true; }
var el = function() {
var results = [], element;
for (var i = 0; i < arguments.length; i++) {
var elem = $(arguments[i]);
elem._extended = el_extended;
results.push(elem);
}
return results.length < 2 ? results[0] : res...