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.
<form class="form-inline" action="javascript:function()" >
<input id="searchKey2" type="text" class="pageSearchBar "  >
</form>

I have an input search bar like the above , each time i search I want the search query to be deleted from the bar but I am not sure on how to do it in Javascript.

Also is there a way to set the form value , except document.getElementById('id').innerHTML??

share|improve this question
Learn Javascript, please. After completing some good tutorials, you will get your answers. Note: no, I am not being rude. – bažmegakapa Aug 15 '12 at 22:35
Yes he's right, look at some good tutorial first. As shown in the answer below, the text input field has a value property, you want to use. See here: w3schools.com/jsref/dom_obj_text.asp – Stano Aug 15 '12 at 22:51

1 Answer

up vote 1 down vote accepted

if you want to set the form field, you can do this

document.getElementById('searchKey2').value = 'something';
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.