Here is the display part of riddler:
Code:
document.write('<a href="mailto:'+encryptedemail_id57+'">Contact Us</a>')
The red parts are just ordinary HTML. The green part represents insertion of the riddled email address and (if included) subject. You could change this line to use whatever HTML you like. If you use the single quote (') character though, it must be escaped with the down slash (\), ex:
Code:
document.write('<a href="mailto:'+encryptedemail_id57+'"><img src="whatever.jpg" onmouseover="this.source=\'someother.jpg\';"></a>')
Bookmarks