12 lines
412 B
JavaScript
12 lines
412 B
JavaScript
jQuery(function(){
|
|
$(function () {
|
|
$(window).scroll(function () {
|
|
if ($(this).scrollTop() > 200 ) {
|
|
$('#scrollUp').css('right','10px');
|
|
} else {
|
|
$('#scrollUp').removeAttr( 'style' );
|
|
}
|
|
|
|
});
|
|
});
|
|
}); |