I am using jquery ajax for registration form. It was working couple of hours ago. I didn`t even make changes on it. But now google chrome says "failed to load resource". Here is the code that I use:
$.ajax({
url: "ajax/funny_reg.php",
type: "POST",
data: data,
cache: false,
success: function (html) {
alert("some text");
}
});
I have also tried to open funny_reg.php file directly and it says that the web page is not available.The file exists. I don`t know what to do.