15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
function link($ziel) {
|
|
//alert($("#car_"+tourID).val());
|
|
$.ajax({
|
|
type : "POST",
|
|
url : 'ajax.php?s=/tuer/logdata&tpl',
|
|
cache : false,
|
|
dataType : "html",
|
|
success : function(data){
|
|
$("#main").html(data);
|
|
}
|
|
});
|
|
}
|
|
|
|
?>
|