Write some jQuery code with AJAX requests, like this:
- Code: Select all
function bild_loeschen(id) {
var urldaten = {};
urldaten['action'] = 'bild_loeschen';
urldaten['id'] = id;
$.post("index.php", urldaten,
function (data) {
$("#bild").html(data);
bilderloader(oe_id);
});
}
Open the GoTo Anything tool and type "@". It will show you the bild_loeschen() and the function (data) "functions". I am pretty sure this is not wanted.

