Du kan tage et kig her hvor jeg har skrevet det samme.
http://www.udvikleren.dk/forum/33791/slide-knap/- <html>
- <head>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(window).scroll(function() {
- if ($(window).scrollTop() > 330) {
- $("#popup").css("position", "fixed");
-
- }
- if ($(window).scrollTop() <= 330) {
- $("#popup").css("position", "absolute");
- }
- });
- </script>
- <style type="text/css">
- body,html{
- height:1600px;
- }
- #popup{
- width:50px;
- height:50px;
- }
- </style>
- </head>
- <body>
- <div id="popup" style="position: absolute; background-color:#000;">
-
- </div>
- </body>
- </html>