Results 1 to 2 of 2

Thread: Using onMouseover to pull xml value to fixedtooltip

  1. #1
    Join Date
    Jan 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Talking Using onMouseover to pull xml value to fixedtooltip

    I'm not having success in finding the proper syntax for this. Can some school me

    <a onMouseover="fixedtooltip (<xml id="note" src="note.xml"> </xml>)" onMouseout="delayhidetip()">Applicants:</a></div>

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Hi:
    Please post questions in the right forum. As this is a DD related script, it should go under "DD Scripts help." I've moved the thread for you this time. Also, Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format for asking a question.

    To answer your question, you can't use XML in such a manner to dynamically populate HTML or JavaScript on the page. You'll need to use some sort of server side language, such as PHP:

    Code:
    <a onMouseover="fixedtooltip (<?echo $tooltipstuff; ?>)" onMouseout="delayhidetip()">Applicants:</a></div>
    It really depends on how your server is set up, and your knowledge of the server side language in question.

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
  •