Textarea value not resetting in post action with Ajax – PHP
I'm using PHP and Ajax to post without page refresh. Everything works fine but the textarea content is not reset after submitting the form. This is my Ajax code: $("#new_post__add").submit(function(event){ event.preventDefault(); var post_url = $(this).attr("action"); var request_method = $(this).attr("method"); var…