Lidt ala det her:
<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>
Testet og virker så du har noget du kan arbejde videre med
Indlæg senest redigeret d. 11.03.2011 19:51 af Bruger #15754