View Single Post
Old 02-01-2013, 08:22 PM   PM User | #4
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,498
Thanks: 18
Thanked 362 Times in 361 Posts
sunfighter is on a distinguished road
Code:
<script type="text/javascript">
	$(window).resize(function() {
	if($(window).width() <= 800){
		$("#object").animate({top:"-100px"});
	}
	if($(window).width() >= 800){
		$("#object").animate({top:"0px"});   // OR what it was set at originally 
	}
});
</script>
Think this is what you want.

Last edited by sunfighter; 02-01-2013 at 08:33 PM..
sunfighter is offline   Reply With Quote