I have elements, generated by UI-framework as follows:
<div id="GENERATED_CONTAINER" style="position: fixed; z-index: 100; left: 368px; top: 52px; width: 545px; height: 846px;">
<div id="GENERATED_CONTENT style="opacity: 0.1; left: 5px; top: 5px; bottom: -5px; width: 545px; height: 846px;">
</div>
</div>
I need to write a script which is to remove width and height from style attributes.
var elems = $("[id^='GENERATED_']");
//what should I apply now?