First of all I apologize for my poor english... Hope someone will understand my question and help me...
I\'m working on a project using lots of $.post call and I wan
You can create a jQuery-Plug which does the validation and then posting the data to the Server. The basics can be found in the jQuery tutorial.
$.post = function() {
var _method = $.post;
// do something you want
console.log("do someting");
return _method.apply($, Array.prototype.slice.apply(arguments));
}