I have a jQuery AJAX request that does not seem to be doing anything.
I see no action on the Network tab on Chrome Debugger,
The error/success callbacks are not being called inside the function and nothing seem to happen on the server side whatsoever.
The thing is, this is not happening on my main local domain: http://dev.sitename.com
It only happen on my inner pages, for example: http://dev.sitename.com/about
My guess is there is some .htaccess rule that is damaging the process but I see no Network activity what so ever, so how could it be?
Here’s my code:
$.ajax({
url: 'ajax.php?cachekiller=' + (new Date()).getTime(),
data: {
action: 'doLogin'
},
success: function() {
// Not being called
},
error: function() {
// Not being called either
}
});
Thank you
try putting cachekiller on data param