Hi
I used grep function of jquery but based on my project requirement i use only javascript so is any alternative of grep in javascript which function i have to use
plz help me
Thanks
Hi
I used grep function of jquery but based on my project requirement i use only javascript so is any alternative of grep in javascript which function i have to use
plz help me
Thanks
jquery source for grep:
Out of curiosity, why can't you use jquery? It's written in javascript.Code:function( elems, callback, inv ) { var ret = []; // Go through the array, only saving the items // that pass the validator function for ( var i = 0, length = elems.length; i < length; i++ ) { if ( !inv !== !callback( elems[ i ], i ) ) { ret.push( elems[ i ] ); } } return ret; }
Last edited by bernie1227; 01-06-2013 at 02:02 AM.
"Most good programmers do programming not because they expect to get paid or get adulation by the public, but because it is fun to program." - Linus Torvalds
Anime Views Forums
Bernie
Bookmarks