Hey there! I'm currently working on a client's website and encountering an issue with my AJAX call on a specific mobile page of the site. You can check out the page in question here. Interestingly, it seems like the header and footer are only malfunctioning on mobile devices, while everything looks good in the Chrome developer tools.
For some reason, I'm unable to replicate this error on my own browser, which makes it challenging to diagnose the root cause. Any insights or suggestions on how to troubleshoot this issue would be highly appreciated! To navigate to the problematic page, simply visit , then browse through a category, a specific subcategory, and finally, a product.
Thank you in advance for any assistance you can provide. Don't hesitate to ask if you require additional information.
Below is the specific AJAX Call code I'm referring to:
$.ajax({
url : "/arsweb/DONOTDELETE",
dataType: "html",
success : function (data) {
var html = $.parseHTML(data);
// Code snippet
},error : function (a,b,c) {
console.log(arguments);
}
});