Results 1 to 3 of 3

Thread: Link Description script

  1. #1
    Join Date
    Sep 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Link Description script

    I would like to know how to change the font size for the link description code.

    Here is the code that I used:

    //Link Description script- © Dynamic Drive (www.dynamicdrive.com)
    //For full source code and TOS, visit http://www.dynamicdrive.com

    //change link descriptions to your own. Extend as needed
    var linktext=new Array()
    linktext[0]=""
    linktext[1]="JavaScript Kit, the JavaScript technology center"
    linktext[2]="Direct link to hundreds of free java applets online"
    linktext[3]="Research information, get homework help, chat with educators"
    linktext[4]="The virtual encyclopedia"
    linktext[5]="Your online dictionary"

    var ns6=document.getElementById&&!document.all
    var ie=document.all

    function show_text(thetext, whichdiv){
    if (ie) eval("document.all."+whichdiv).innerHTML=linktext[thetext]
    else if (ns6) document.getElementById(whichdiv).innerHTML=linktext[thetext]
    }

    function resetit(whichdiv){
    if (ie) eval("document.all."+whichdiv).innerHTML=' '
    else if (ns6) document.getElementById(whichdiv).innerHTML=' '
    }

    </script></font></p>

    <p style="margin-left: 20px; margin-bottom: 25px">
    <a href="" onMouseover="show_text(0,'div1')" onMouseout="resetit('div1')">
    <font size="2">Stroke Program</font></a><font size="2"> |
    <a href="" onMouseover="show_text(1,'div1')" onMouseout="resetit('div1')">Telestroke</a> |
    </font>
    <a href="" onMouseover="show_text(2,'div1')" onMouseout="resetit('div1')">
    <font size="2">Stroke secondary prevention clinic</font></a><br>
    <span id="div1"> </span>

  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

    Code:
    <span id="div1" style="font-size:90&#37;;"> </span>
    - John
    ________________________

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

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

    Default

    Femfrog, Warning: please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a 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
  •