Here is the haml for my form:

 34 #new_comment
 35   %strong Add Comment:
 36   - semantic_form_for 'comment', :url => add_comment_url(@review), :remote => true do |f|
 37     
 38     = f.text_area :comment, :label => :comment, :cols => 60,:rows => 5, :input_html => {:rows => 5, :cols => 30}
 39     = f.submit

After I submit, I have jquery javascript in a .js.erb file, but I can't get it to clear. this is what I have:

  7 /* Reset the comment form */
  8 $("#comment_comment").reset();

It isn't doing anthing?

link|improve this question

2  
Why not just document.getElementById("comment_comment").value = ""; or .innerHTML = ""; for a textarea? – Antwan van Houdt Apr 24 '11 at 21:53
how do i do that? – Angela Apr 24 '11 at 22:02
Well it was just a suggestion, it is what you would do with normal javascript if you don't use jquery ( bloatware ). document.getElementById("comment_comment") gives you the elemment, then using .value you can empty text fields in a form – Antwan van Houdt Apr 24 '11 at 22:04
how can I do it with jquery since I am using it already.... – Angela Apr 24 '11 at 22:11
$("#comment_comment").val(""); but using normal javascript would be better in my opinion, but thats just me, and thats why its just a comment ^^ – Antwan van Houdt Apr 24 '11 at 22:12
feedback

1 Answer

up vote 0 down vote accepted

To reset that one text area:

$('#comment_comment').val('');
link|improve this answer
why doesn't reset work? I got it from a blog? – Angela Apr 24 '11 at 22:11
hmm, welp, it works, but curious....thanks... – Angela Apr 24 '11 at 22:13
What blog? It may be a jQuery plugin they were using? – Dylan Markow Apr 25 '11 at 0:39
feedback

Your Answer

 
or
required, but never shown

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