I\'m attempting to add this code to a dynamically created div element
style = \"width:330px;float:left;\"
The code in which creates the dy
You can try with this
nFilter.style.cssText = 'width:330px;float:left;';
That should do it for you.