Skip to content

Instantly share code, notes, and snippets.

@user24
Created November 7, 2014 14:05
Show Gist options
  • Save user24/b6ae2948a7941eafe5a8 to your computer and use it in GitHub Desktop.
Save user24/b6ae2948a7941eafe5a8 to your computer and use it in GitHub Desktop.
$('#calendar .barIcons > .barIcon').each(function (i, icon) {
var left;
icon = $(icon);
left = parseInt(icon.position().left, 10);
alert(left); // increases each time
return; // Comment this and now the alert is zero each time.
icon.css({
"position": "absolute"
});
});
@user24
Copy link
Author

user24 commented Nov 7, 2014

@getify yeah I know console.log can be async - didn't think alert could. But even then, it is actually setting the values to zero too, even without the alert.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment