Hi,
I have a div element which have a lot of other divs inside. Inside that divs are also div elements. Now, how can I change width of every div element inside wanted div using jquery (all levels of children). Example
<div id="1">
<div id="2">
<div id="3">
</div>
</div>
<div id="4">
</div>
</div>
Now, I want to change width of all those divs.
Thanks in advance,
Amer