I'm using this little function to run my ajax without mimimi, see
var HTTP = 'http://127.0.0.1/';
function ajax(to, data) {
$.ajax({
type: "POST",
url: (HTTP + to),
data: data,
cache: false,
success: function(output) {
alert(output);
}...
asked by
22.03.2015 / 04:20