I am trying to use jQuery to run an AJAX request on a specific port:
$(document).ready(function() {
$.ajax({
url: "http://test_serve:666/test.php",
type: "GET",
data: ({value_test: 'true'}),
dataType: "html"
});
})
This does not work: no AJAX call is made, and I get no exceptions in Firebug. It works if I do not specify a port. Does anyone know why?
source
share