Results 1 to 4 of 4

Thread: Clear data in fields within form

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

    Question Clear data in fields within form

    I have image1 and Image_over
    When user goes over image1 it should change image1 to image_over.
    When user clicks on image it will clear all fields in form.

    How to do without button and JavaScript? Need help

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Without Javascript? Not possible. With Javascript, you can use a form's .reset() method.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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

    Default

    Pleas etell me whole code with Javascript. I will do but I need without button. My images (over image and base)

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    HTML Code:
    <img src="image_base.png" onmouseover="this.src = 'image_over.png';" onmouseout="this.src = 'image_base.png';" style="display: none;" onclick="this.form.reset();" id="resetImage"/>
    <input type="reset" value="Clear" id="resetButton"/>
    <script type="text/javascript">
      document.getElementById("resetButton").style.display = "none";
      document.getElementById("resetImage").style.display = "inline";
    </script>
    That ought to work nicely, as well as providing a non-JS alternative.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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
  •