$("#rightControl").click(function(){
$("#thumb_menu").animate({"left": "-=520px"}, "slow");
var pos = $('#thumb_menu').position();
if(pos.left < 0) {
$('#header')
.prepend('<span class="control" id="leftControl">Move left</span>')
}
});
Clicking #rightControl once moves #thumb_menu to -450px left so the if should run but I cant seem to get this working.
Where am I going wrong?