Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript clearing text box value

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25675
    aligolabi
    Participant

    hello every one, i wrote this code, i want to clear the textbox value with this:

    Code:



    Untitled 1




    please tell me what wrong with this code?
    when i click on reset button nothing happen

    #61962

    Your code actually is working… just not in the way you think it should. At the moment, if you load the form, then click the button, it appears that nothing happens. However, try reloading the page, changing the value of the text element, and then clicking the reset button. Currently, your jquery code resets everything back to their default values. Since the text element has a default value of "defult", it will go back to that.

    That being said, perhaps you should look at this article, which may give you a slightly different perspective:
    http://www.learningjquery.com/2007/08/c … -form-data

    #61963
    aligolabi
    Participant

    thank u falkencreative,
    i solve that, it is not good idea that using <input type="reset"> for handling the clear function,
    because when i press the reset browser try to change the value to "defult" and .val(”)doesn’t work,
    changing type of input to BUTTON can solve this issue.

    [sorry for my english]

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.