function imydaddy() { var z, i, elmnt, file, xhttp; /* Loop through a collection of all HTML elements: */ z = document.getElementsByTagName("*"); for (i = 0; i < z.length; i++) { elmnt = z[i]; /*search for elements with a certain atrribute:*/ file = elmnt.getAttribute("mydaddy"); if (file) { /* Make an HTTP request using the attribute value as the file name: */ xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4) { if (this.status == 200) {elmnt.innerHTML = this.responseText;} if (this.status == 404) {elmnt.innerHTML = "Page not found.";} /* Remove the attribute, and call this function once more: */ elmnt.removeAttribute("mydaddy"); imydaddy(); } } xhttp.open("GET", file, true); xhttp.send(); /* Exit the function: */ return; } } } function mdtect() { var md = new MobileDetect(window.navigator.userAgent); $.ajax({ type: "POST", url: "/api/pro/", // POINTS TO THE PROCESSING FILE WE CREATED ABOVE data:{ mobile: md.mobile(), phone: md.phone(),iphone: md.is('iPhone'),isbot: md.is('bot').toString() ,uagent: md.userAgent()}, success: function(data){ if (data != 0){ var ssdfg = document.getElementById("emydaddy"); if (ssdfg != null){ ssdfg.setAttribute('mydaddy',data); } imydaddy(); } } }); } loadOrigin(['mobile'],[],[]); LoadJS(["loadContent"],"/cdn/js/"); mdtect(); AOS.init({ duration: 1000, easing: 'ease-in-out', once: true });