How can I make hover() run continuously? I'd like that when I mouse over #up_btn, the top property keeps animating. Right now, it only runs once.
$(document).ready(function(){
$("#up_btn").hover(function(){
var new_num = parseInt($("#move_box").css("top"));
$("#move_box").css("top", new_num + 1);
})
})
parseIntontopwith jQuery. Just do.css('top', '+= 1')! – rynah Jun 7 '12 at 2:35