Lorem Ipsum alternative, print out all links from a page)
Many cool links found on Jennifer's etc:
Original Lorem Ipsum
Alternate to Lorem Ipsum text generator
Print out all links from a page (as footnotes) (it's a bookmarklet)
Many cool links found on Jennifer's etc:
Original Lorem Ipsum
Alternate to Lorem Ipsum text generator
Print out all links from a page (as footnotes) (it's a bookmarklet)
December 11th, 2003 at 11:18 pm
This is really cool. A bookmarklet that expands the links in a web out to be footnotes which reference the webpages linked to … so you can see them. Love it.
December 17th, 2003 at 9:43 am
I kinda transformed that bookmarlet in a standard javascript, to be used on my printer-friendly pages. Here is it:
function fNote(){
tmpStr=";
d=document;
s=d.getElementsByTagName('A');
la=new Array(s.length);
lc=0;
for(i=0;
i['+lc+']')
}
}
for(i=1;i'+la[i].innerText+': '+la[i].href+''}d.body.insertAdjacentHTML('beforeEnd','
Link Footnotes:'+tmpStr+")
window.print();
}
Then call function:
fNote()
I added the window.print(), and called fNote at body onLoad, on such pages. There's a tiny bug with my "for print" pages, but really minor issue.
Check here, if you will:
http://www.abraji.org.br/print.php?sid=38
(maybe you'll be redirected to the "web version"; just click on the printer icon).
X's,
Murilo
December 17th, 2003 at 9:43 am
I kinda transformed that bookmarlet in a standard javascript, to be used on my printer-friendly pages. Here is it:
function fNote(){
tmpStr=";
d=document;
s=d.getElementsByTagName('A');
la=new Array(s.length);
lc=0;
for(i=0;
i['+lc+']')
}
}
for(i=1;i'+la[i].innerText+': '+la[i].href+''}d.body.insertAdjacentHTML('beforeEnd','
Link Footnotes:'+tmpStr+")
window.print();
}
Then call function:
fNote()
I added the window.print(), and called fNote at body onLoad, on such pages. There's a tiny bug with my "for print" pages, but really minor issue.
Check here, if you will:
http://www.abraji.org.br/print.php?sid=38
(maybe you'll be redirected to the "web version"; just click on the printer icon).
X's,
Murilo
May 2nd, 2004 at 7:00 am
Un bookmarklet qui permet de conserver à l'impression les URL des liens contenus dans une page.