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 have got a bunch of select in a form with which I am using jquery chosen plugin [http://davidwalsh.name/jquery-chosen]. How can I reset the form?

<input type="reset" />

does not work.

share|improve this question

2 Answers

up vote 41 down vote accepted

You'll need to reset the value of the field, then trigger the liszt:updated event on the input to get it to update, ive made a fiddle with a working example here.

http://jsfiddle.net/VSpa3/3/

$(".chzn-select").chosen();
$('a').click(function(){
    $(".chzn-select").val('').trigger("liszt:updated");
});​
share|improve this answer
2  
this is epic! works like a charm! thanks a lot! – P H Oct 26 '11 at 2:59
1  
Google + StackOverflow > docs once again. – Sharondio Feb 7 at 15:06

In jQuery something like this should work

<input name="Text1" id="something" type="text">

<input type="reset" id="reset_me"/>


$("#reset_me").click(function() { 
$("#something").val("");
});
share|improve this answer
$j('.chzn-select').each(function () { $j(this).val("") }); does not clear the tags in the chosen – P H Oct 26 '11 at 2:11
@P H if you could give an example of your code for us to help – MHowey Oct 26 '11 at 2:25
sottenad just answered this, pls refer to his jsfiddle link above. now my code looks like $j('.chzn-select').each(function () { $j(this).val("").trigger("liszt:updated"); }); – P H Oct 26 '11 at 3:10

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.