Page 1 of 1 [ 1 post ] 

introspective
Tufted Titmouse
Tufted Titmouse

User avatar

Joined: 29 May 2009
Age: 36
Gender: Male
Posts: 26

29 Dec 2009, 4:03 am

Bookmarklets are bookmark links that will do something useful when you click them. You can make them run just by copying and pasting them into your address bar, but they'll be most useful if you add them as links.

Goes to the next page of the topic
javascript:a=document.getElementsByTagName('a');for(b in a)if(a[b].innerHTML=='Next')window.location=a[b].href

Goes to the previous page in a topic
javascript:a=document.getElementsByTagName('a');for(b in a)if(a[b].innerHTML=='Previous')window.location=a[b].href

Makes all images that are linked to on the page visible
javascript:a=document.getElementsByTagName('a');d=new Array('.png','.jpg','.jpeg','.gif','.bmp','.tif','.tiff');for(b in a)for(c in d)if(a[b].href.indexOf(d[c])!=-1){e=document.createElement('img');e.src=a[b].href;a[b].appendChild(e);}

If you need help, just ask. :wink:
Also, Tim_Tex is above 32,000 posts.