Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to clear all the input in my website even if the parameters for loggin have been saved by the navigator,

I've tried to do that using that on the concerned input

<input type="text" name="login" placeholder="Adresse E-mail" onload="this.value=''">

Is there an other way for doing that?

anykind of help wull be much appreciated.

share|improve this question

2 Answers

up vote 1 down vote accepted

What you might want to try use is the autocomplete=off parameter in your input fields.

<input type="text" name="login" placeholder="Adresse E-mail" autocomplete="off" >

This parameter can also be added to the actual <form> element -

<form name="myForm" id="myForm" method="post" autocomplete="off" >
share|improve this answer
Dear Sir, thanks for your quick reply, even using that property it does not work for me – Stanislas Piotrowski Jan 12 at 12:07
1  
Thanks for the edit, I added the property in the form element and now it works fine. Receive my utmost Respect – Stanislas Piotrowski Jan 12 at 12:09
@sta - glag to help! Happy coding! – Lix Jan 12 at 12:16

To handle it in generic way, instead of tagging every field, use readystate change event of document and get all input elements by tag name using getElementsByTagName. Check the type of each element and then set the appropriate value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.