Below code from your application. This is the steps how to find it:
1 open application on .../List_Customers.html page.
2 open debug tool and search through the js by "slideDown(300);".
3 you will find two places.
One of them is:
pre
code
Code: Select all
$('#List_Customers').bind({
pageshow: function() {
$('#List_Customers_mobilecontainer [name="collapsibleblock"]').die().live({
expand: function() {
var contentDiv = $('.ui-collapsible-content', this);
contentDiv.hide();
contentDiv.slideDown(300);
},
collapse: function() {
var contentDiv = $('.ui-collapsible-content', this);
contentDiv.slideUp(300);
},
})
},
});
/code
/pre
It means that you have bind this JS code to "pageshow" event on "List_Customers" page.
Please delete this code and try suggested solution from upper reply. If it will not help please attach screenshot with errors.