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

[eluser]Prullenbak[/eluser]
Well, basically your jquery function submits the form with id 'commentForm'. And that form has the action 'comment/addComment/' (you might want to remove the trailing slash there, just to be sure). You don't actually pass data from javascript to the controller, you just submit a form. You can see if that's working by checking your address bar. Does it change to comment/addComment?

If so, you can continue working on that page/function, which handles the post data. You could try to start smaller, to see where the problem is (if there is one), and change your addComment function to this:

Code:
if($comment != ''){
  echo $comment;
  }else{
   echo 'You didnt comment anything :(';
  }

Just to see if the comment is actually submitted and available in your addComment function, and then work from there.


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