I'm trying to set some labels right property so that I can change it on mouse over.
The reason I'm doing this via jQuery is because each one has a different size which doesn't allow to do it via CSS.
This is what I have:
$('#vertical-navigation .label').css('right', $(this).width());
Which, of course, doesn't work, because $(this) is returning what I believe to be the window width.
How can I set the right position with the element own width, for each one?