Lets say I want to assign element's width to itself. For example, I have a div with content and I want to assign style="width:..."
it.
Then in jQuery I do:
elem.width(elem.width());
Which looks for me totally wrong since it looks like how can I set the width by getting it..
Is there any better way to do it?