Results 1 to 4 of 4

Thread: using double quotation marks in Cool DHTML Tooltip

  1. #1
    Join Date
    Apr 2005
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default using double quotation marks in Cool DHTML Tooltip

    1) Script Title: Cool DHTML Tooltip

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...tmltooltip.htm

    3) Describe problem:


    Code:
    <a href="http://www.javaSciprtKit.com" onMouseover="ddrivetip('She said. \'hello\'.', 'yellow', 250)";
    onMouseout="hideddrivetip()">LINK1</a><br>
    
    <a href="http://www.javaSciprtKit.com" onMouseover="ddrivetip('She said. \"hello\".', 'yellow', 250)";
    onMouseout="hideddrivetip()">LINK2</a><br>
    LINK1 with single quotation marks works fine by using backslash.
    But, LINK2 with double quotation marks doesn't work fine.

    How can I make it fine with double quotation marks?
    Last edited by joon; 01-12-2009 at 01:07 PM.

  2. #2
    Join Date
    Feb 2008
    Posts
    137
    Thanks
    18
    Thanked 2 Times in 2 Posts

    Default

    You could try the ascii version of those double quotes; &#_34; Remove the red underline, gives you this: "
    Or you could use these; &#_8220; &#_8221; Remove the red underline, gives you this: “ ”

    Cheers
    ASCII stupid question, get a stupid ANSI!
    Beta is Latin for still doesn’t work.
    Mac users swear by their Mac, PC users swear at their PC.
    Keyboard not found...Press any key to continue.

  3. #3
    Join Date
    Apr 2005
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by student101 View Post
    You could try the ascii version of those double quotes; &#_34; Remove the red underline, gives you this: "
    Or you could use these; &#_8220; &#_8221; Remove the red underline, gives you this: “ ”

    Cheers
    Ah.. Thank you.

  4. #4
    Join Date
    Feb 2008
    Posts
    137
    Thanks
    18
    Thanked 2 Times in 2 Posts

    Default

    Anytime, I hope it works out for you.

    Cheers
    ASCII stupid question, get a stupid ANSI!
    Beta is Latin for still doesn’t work.
    Mac users swear by their Mac, PC users swear at their PC.
    Keyboard not found...Press any key to continue.

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
  •