Welcome Guest, Not a member yet? Register   Sign In
How to Submit textarea comment on Enter key?
#1

[eluser]Volkof[/eluser]
Hi guys,

I want a textarea where user type some comments and hit Enter, the comment is submitted without pressing Submit button.

I searched through the web and found something like the code below, but it does not seems to work. Can anyone point out my mistake?

Code:
$("commentForm").keypress(function(event) {
    if (event.which == 13) {
  alert("Submit!");
        event.preventDefault();
        $("commentForm").submit();
    }
});

This is my View (I left the submit button there, but if the OnEnter works, I will remove the button):
Code:
//Create a textarea for Comments
     $commentForm = array('id' => 'commentForm');
     echo form_open('comment/addComment/', $commentForm);
    
     $comment = array(
        'name'        => 'comment',
        'rows'  => '4',
        'cols'        => '30',
        'id'   => 'commentbox',
        'onkeypress' => 'submitComment()',
      );
     echo "<p>Your comment for this review:<br/>";
     echo form_textarea($comment);
     echo "</p>";

     echo "<p>";
     echo form_submit('submit', 'Post Comment');
     echo "</p>";
    
     echo form_hidden('reviewID', $row->reviewID);
     echo form_close();


Messages In This Thread
How to Submit textarea comment on Enter key? - by El Forum - 01-08-2013, 08:25 PM
How to Submit textarea comment on Enter key? - by El Forum - 01-08-2013, 11:16 PM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 03:16 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 04:55 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 08:00 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 08:08 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 08:40 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 08:46 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-09-2013, 09:29 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-10-2013, 12:57 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-10-2013, 04:16 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-10-2013, 05:57 AM
How to Submit textarea comment on Enter key? - by El Forum - 01-10-2013, 09:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB