
Originally Posted by
islandman1010
Hi,
3.6.15....just takes me to a blank page with a few numbers in top left. 234 or 1536...just random numbers each time
You must try this:
Code:
javascript:elms=document.getElementsByName("checkableitems[]");for(count=0;count<elms.length;count++){setTimeout("elms["+count+"].click()",100)}
If not working you can also try this one:
Code:
javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()};
Bookmarks