Hello there,
I found a problem when I enabled Hikashop cart modules, then the Mootools will conflict with my jQuery pages. And throgh my web site guru it recommend me to ask help from you to find the following code and have some modification.
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollup').fadeIn();
} else {
$('.scrollup').fadeOut();
}
});
$('.scrollup').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
Where can I find the above code?
And he recommend me to start with:
jQuery(document).ready(function($){
Thanks a lot.