Skip to content

Instantly share code, notes, and snippets.

@jtadeulopes
Created August 13, 2009 18:08
Show Gist options
  • Save jtadeulopes/167352 to your computer and use it in GitHub Desktop.
Save jtadeulopes/167352 to your computer and use it in GitHub Desktop.
function reverseMenuItem() {
$('li.main').each(function(i) {
qnt = $('li.main').length;
if (i == (qnt-1) || i == (qnt-2)) {
li_width = $('li.main:eq('+i+')').width();
ul_width = $('li.main:eq('+i+') ul').width() + 24 - li_width;
$('li.main:eq('+i+') ul').css({
marginLeft: -ul_width
});
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment