Ich verstehe es nicht, aber es gibt vieles was ich nicht verstehe, so beginne ich einfach noch einmal von vorn:
zwischen den HEAD TAGS
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<style type="text/css">
#smoothup {
height: 40px;
width: 40px;
position:fixed;
bottom:50px;
right:100px;
text-indent:-9999px;
display:none;
background: url("../assets/images/gototop.png");
-webkit-transition-duration: 0.4s;
-moz-transition-duration: 0.4s;
transition-duration: 0.4s;
}
</style>
Body-Ende, nicht ans Seiten-Ende
<script type="text/javascript">
jQuery(document).ready(function($){
$(window).scroll(function(){
if ($(this).scrollTop() < 200) {
$('#smoothup') .fadeOut();
} else {
$('#smoothup') .fadeIn();
}
});
$('#smoothup').on('click', function(){
$('html, body').animate({scrollTop:0}, 400);
return false;
});
});
</script>
ZUSÄTZLICHES TEXTFELD
<a href="#top" id="smoothup" title="Back to top">[/url]