How can I attach success event handler to a simple htmp post form that has such a markup:
<form action="/Home/UpdateMessage" method="POST">
...
</form>
On my server I have this response:
return Json(true, JsonRequestBehavior.AllowGet)
and it gets back to the client(browser) but how can I handle it?