21 lines
492 B
JavaScript
21 lines
492 B
JavaScript
|
|
data = {"security_token":"jebatceckyhajzel", "akce":"frontend"}
|
|
url = "http://localhost/skripty/katalog.php"
|
|
dataType = "json"
|
|
|
|
$(document).ready(function () {
|
|
$.ajax({
|
|
type: "POST",
|
|
url: url,
|
|
data: JSON.stringify(data),
|
|
dataType: "html",
|
|
contentType: "application/json; charset=utf-8",
|
|
success: function(x, status, xhr) {
|
|
$("#semdej").empty()
|
|
$("#semdej").append(x)
|
|
}
|
|
|
|
});
|
|
});
|
|
|