Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

main.js 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. $(document).ready(function() {
  2. $('#settingsForm').submit(function(event) {
  3. event.preventDefault();
  4. $.post("ajax/saveSettings.php", $("#settingsForm").serialize(), function(data) {
  5. $(".result").html(data);
  6. }).success(function(e) {
  7. $.smallBox({
  8. title: "Änderung erfolgreich",
  9. content: "Die Einstellungen zur Landingpage wurden übernommen und gespeichert.",
  10. color: "#739E73",
  11. icon: "fa fa-check",
  12. timeout: 5000
  13. });
  14. });
  15. });
  16. $('#allDls').click(function(e) {
  17. var loadData = $.ajax({
  18. method: "GET",
  19. url: "ajax/downloadOverview.php"
  20. });
  21. loadData.done(function(data) {
  22. $("#ajaxReq").html(data);
  23. });
  24. loadData.fail(function (jqXHR, textStatus) {
  25. alert("Request failed: " + textStatus);
  26. });
  27. e.preventDefault();
  28. });
  29. $('#allVisits').click(function(e) {
  30. var loadData = $.ajax({
  31. method: "GET",
  32. url: "ajax/visitorOverview.php"
  33. });
  34. loadData.done(function(data) {
  35. $("#ajaxReq").html(data);
  36. });
  37. loadData.fail(function (jqXHR, textStatus) {
  38. alert("Request failed: " + textStatus);
  39. });
  40. });
  41. });