del.icio.us LightBox
This script displays target website in iframe with lightbox effect instead of opening a new window
del.icio.us is a popular social bookmark service. This script displays target website in iframe with the lightbox effect instead of opening a new window. More info about Lightbox for Hyperlinks.
You could comment on this script if you were logged in.

login to vote
Nice script, I made a slight change. I have del.icio.us tags that are private, and this script didn't work for those.
I changed two lines. First I changed this line:
var re = /^post$/;
by removing the $.
Next I changed this line:
if(bookmarks[i].className!='post') continue;
to be like:
if(bookmarks[i].className!='post' && bookmarks[i].className!='post private') continue;
Even after the change, I found a couple sites that didn't work. The lightbox was drawn, but then the site appeared full-screen.