[jQuery] Animate percentage?
This works:
$('#selectedFormat').animate({marginLeft:50}, 500);
this does't:
$('#selectedFormat').animate({marginLeft:25%}, 500);
nor does this:
$('#selectedFormat').animate({marginLeft:'25%'}, 500);
how do I animate something on a percentage?