function category_products(query,category_id) { var b = document.getElementById('products_more_'+category_id); var c = document.getElementById('links_page'); var d = document.getElementById('category_products_'+category_id); if(b) { b.innerHTML = 'loading'; b.className += ' loading'; } else if(c && query.indexOf('links_page')) { c.innerHTML = 'loading'; c.className += ' loading'; } var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { d.innerHTML += this.responseText; } else { return true; } }; xhttp.open("GET", "/shop/category_products.php?t=358294688&"+query, true); xhttp.send(); }