setting select width problem
Hi,
I am creating Html element select and setting its width
But
For Mozila
var newlistOperation = document.createElement("select");
newlistOperation.setAttribute("style", "width:191px");
works.
For IE
var newlistOperation = document.createElement("select");
newlistOperation.setAttribute("width", "191px");
works
I do not want to check browser type and then set width accordingly.
How can I set width of select element so that it works for both IE as well as Mozila
Thanks
waiting for your response.

