I am getting the following error: jquery ajax readystate 0 responsetext status 0 statustext error
when giving it: url(http://www.tutorialspoint.com/proto
I was getting this error and in my case it was not due to same origin policy. This answer is quite helpful.
My case was, I had a link button and I was not using e.PreventDefault()
ASPX
Javascript
function VerifySearch(sender, e) {
e.preventDefault();
$.ajax({
type: 'POST',
.............
}
return false;
}