Skip to content Skip to sidebar Skip to footer

Unable To Clear Text Field With Overridden Submit Method Used For Ajax Implementation Via Jquery 1.4

I have a functionality of posting messages to a group which works using AJAX via Jquery. When I click on the 'Post' button which is the value of the submit_tag, javascript is rende

Solution 1:

I assume you want something like this:

$('#post_msg input').val('');

That will clear the message input box value.

Post a Comment for "Unable To Clear Text Field With Overridden Submit Method Used For Ajax Implementation Via Jquery 1.4"