Results 1 to 2 of 2

Thread: Looking for a script on DD

  1. #1
    Join Date
    Feb 2006
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Looking for a script on DD

    Just not sure how to search for it

    I want somthing that will do something similar to this:

    http://www.practiceboard.com/

    I found a javascript online that was suppose to do this but the script didnt' work.

    Basically I want to add something like this to my site.

    I appreciate any 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

    HTML Code:
    <html>
    <head>
    <title>HTML Practice</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    Type in some HTML here:<br>
    <textarea id="html" cols="60" rows="10"></textarea><br>
    <input type="button" value="See Result" onclick="document.getElementById('disp').innerHTML=document.getElementById('html').value">&nbsp;&nbsp; <input type="button" value="Reset" onclick="document.getElementById('html').value=''">&nbsp;&nbsp; <input
    type="button" value="Clear" onclick="document.getElementById('disp').innerHTML=''"><br>
          <div id="disp"></div>
    
    </body>
    </html>
    - John
    ________________________

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

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
  •