Results 1 to 2 of 2

Thread: Rollover buttons that display text underneath

  1. #1
    Join Date
    Oct 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Rollover buttons that display text underneath

    Hi,

    I am looking to add some buttons that upon rollover display text (a detailed description of what the user would find should they click the button) I'm going to have about three all together on one page and I would like the text to appear in the same place. So in short rollover and text appears. Any help greatly appreciated.

    bjblatz

  2. #2
    Join Date
    Jun 2008
    Posts
    589
    Thanks
    13
    Thanked 54 Times in 54 Posts
    Blog Entries
    1

    Default

    Code:
    <input type="button" onmouseover="document.getElementById('inht').innerHTML = 'your description here';" onmouseout="document.getElementById('inht').innerHTML = '';" value="Mouseover"><br><span id="inht"></span>
    You can change the position of the span to fit your needs from the code above.

    -magicyte

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
  •