Question about the OLD JS select all code

adrien23

Regular Member
Joined
Aug 19, 2009
Messages
323
Reaction score
55
Wondering, since the select all code doesn't work with IE, is there another one that actually does work within IE (doesn't need to work with the rest)?

Thanks
 
Nothing like this available? There has to be one working within IE...

Thanks
 
Code:
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

works with both
 
Code:
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
works with both

Yea I know of that code, but no it doesn't...In IE it only selects one page of friends, not all of them.
 
are you sure? i suggest you test it again
Yea I'm sure...maybe it does work on IE, but definately not nearly 100% of the time as I've tried it 10x or more and none have worked (on diff accounts).
 
why not hire a coder to make one for you which will work with IE
 
Back
Top