12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- $(document).ready(function() {
- $('#settingsForm').submit(function(event) {
- event.preventDefault();
-
- $.post("ajax/saveSettings.php", $("#settingsForm").serialize(), function(data) {
- $(".result").html(data);
- }).success(function(e) {
- $.smallBox({
- title: "Änderung erfolgreich",
- content: "Die Einstellungen zur Landingpage wurden übernommen und gespeichert.",
- color: "#739E73",
- icon: "fa fa-check",
- timeout: 5000
- });
- });
- });
-
- $('#allDls').click(function(e) {
- var loadData = $.ajax({
- method: "GET",
- url: "ajax/downloadOverview.php"
- });
-
- loadData.done(function(data) {
- $("#ajaxReq").html(data);
- });
-
- loadData.fail(function (jqXHR, textStatus) {
- alert("Request failed: " + textStatus);
- });
- e.preventDefault();
- });
-
- $('#allVisits').click(function(e) {
- var loadData = $.ajax({
- method: "GET",
- url: "ajax/visitorOverview.php"
- });
-
- loadData.done(function(data) {
- $("#ajaxReq").html(data);
- });
-
- loadData.fail(function (jqXHR, textStatus) {
- alert("Request failed: " + textStatus);
- });
- });
-
- });
|