I have an image:
<img title="<?php echo JText::_('AEROBOT_HELLO'); ?>" src="images/aerobot.png" id="aerobot" align="right" />
And I want to move the image (make it visible any time), when user scroll the page. I tried this code:
var $scrollingDiv = $("#aerobot");
$(window).scroll(function(){
$scrollingDiv
.stop()
.animate({"marginTop": ($(window).scrollTop() + 30) + "px"}, "slow" );
});
But it's moving the whole content(which is under image) that I have on the page. So, how to move only the image with the scroll?