Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.js 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. $('#logout').click(function(e) {
  17. $("#ajaxReq").html();
  18. });
  19. $('#allDls').click(function(e) {
  20. var loadData = $.ajax({
  21. method: "GET",
  22. url: "ajax/downloadOverview.php",
  23. beforeSend: function () {
  24. $('#ajaxReq').html('<h1 class="text-center"><i class="fa fa-refresh fa-spin"></i> Daten werden geladen</h1>')
  25. }
  26. });
  27. loadData.success(function(data) {
  28. $("#ajaxReq").html(data);
  29. });
  30. loadData.fail(function (jqXHR, textStatus) {
  31. alert("Request failed: " + textStatus);
  32. });
  33. e.preventDefault();
  34. });
  35. $('#allVisits').click(function(e) {
  36. var loadData = $.ajax({
  37. method: "GET",
  38. url: "ajax/visitorOverview.php",
  39. beforeSend: function () {
  40. $('#ajaxReq').html('<h1 class="text-center"><i class="fa fa-refresh fa-spin"></i> Daten werden geladen</h1>')
  41. }
  42. });
  43. loadData.done(function(data) {
  44. $("#ajaxReq").html(data);
  45. });
  46. loadData.fail(function (jqXHR, textStatus) {
  47. alert("Request failed: " + textStatus);
  48. });
  49. });
  50. });