Fungujici editor polozek

This commit is contained in:
2026-04-06 20:32:26 +02:00
parent 215a4f4bbf
commit 1aa4193039
43 changed files with 598 additions and 2046 deletions

0
js/bootstrap.js vendored Normal file → Executable file
View File

0
js/captcha.js Normal file → Executable file
View File

2
js/jquery-3.4.1.js vendored Normal file

File diff suppressed because one or more lines are too long

0
js/jquery-3.js vendored Normal file → Executable file
View File

0
js/popper.js Normal file → Executable file
View File

20
js/sortiment.js Normal file
View File

@@ -0,0 +1,20 @@
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)
}
});
});