Im trying to use jquery to make an ajax on a specif port
$(document).ready(function() {
$.ajax({
url: "http://test_serve:666/test.php",
type: "GET",
data: ({value_test: 'true'}),
dataType: "html"
});
})
And this does not work, no ajax call is made nor do I get any exception (using firebug) It does work if I do not specif the port. Anyone know why? Thanks!