HTML/Quick Reference
From r00tedvw.com wiki
Interesting Items
Hidden Link
Using a portion of javascript it is possible to create a HTML link that appears to go to a safe URL, but actually will direct the user to any URL you want. Even if the User scrolls over the link to look at a preview of the URL it's pointing to, unless they look at the source they will not realize it points somewhere else.
Example:
<a href="http://www.ced-miami.com/wp-content/uploads/2014/03/CED-LOGO-FINAL.png" onclick="window.open('http://www.where-ever.the.fuck.i.want.you.to.go.com', 'newwindow', 'width=300, height=250'); return false;"> Print</a>