File: /www/wwwroot//crm.jmfdbn.com/addons/returntop/public/scrolltopcontrol.js
$(function(){
var win = $(window);
var gototopHtml = '<div id="topcontrol"><a href="javascript:void(0);" class="top_stick"> </a></div>';
$("body").append(gototopHtml);
$("#topcontrol").css({
"display": "none",
"margin-left" : "auto",
"margin-right" : "auto",
"width" : 1000
});
$("#topcontrol").find(".top_stick").css({
"position" : "fixed",
"bottom" : 50,
"right": 50,
"z-index":999999
});
win.scroll(function(){
var scrTop = win.scrollTop();
if( scrTop > 100 ) {
$("#topcontrol").fadeIn();
} else {
$("#topcontrol").fadeOut();
}
});
$("#topcontrol").click(function(){
$('body,html').animate({scrollTop: 0}, 500);
})
})