Results 1 to 3 of 3

Thread: email riddler with images

  1. #1
    Join Date
    Feb 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default email riddler with images

    1) Script Title: email riddler

    2) Script URL (on DD): http://www.dynamicdrive.com/emailriddler/

    3) Describe problem:

    what I would like to do is to use your email encryptor tool which is
    brilliant in two different ways:

    1. linked to a hotspot - eg as in the email link on
    http://www.rock-pool.net/, and:

    2. linked to an image that changes on hover as in
    http://www.amimotormanagement.co.uk/contacts/dave.html

    I would be eternally grateful for help

    Thanks

    Nick

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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>')
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Feb 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks for your reply John and sorry that I have taken so long to respond

    p.s. I will be donating later today

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •