[jQuery] Get dynamic width
Hello,
I want to find full width of all elements in one div. Here is example
code:
<div id="scroller">
text
text
text
text
</div>
$("#scroller p").each(
function(i){
var elSize = $(this).width();});
I need total width of all :-)
Thanks in advance