I\'m making an ajax post to a webmethod EmailFormRequestHandler
, I can see on the client side (through firebug) that status of the request is 200 but it\'s not hit
First thing I noticed is that you are missing contentType: "application/json; charset=utf-8" in your $.ajax. Also affffd to your $.ajax a complete callback it returns jqXHR,textStatus. I think the complete callback will help because textStatus one of the following ("success", "notmodified", "error", "timeout", "abort", or "parsererror"). This might help you track down the issue.