I executed but only FF and chrome moves the textarea 0px from top and 0px from left but in IE textarea is in default position.
Here is my code:
publi
What about using style classes? I mean, you can write a style class like this:
.someClass {
position:absolute;
top:0px;
left:0px;
}
And then add the style class to the TextArea
ta.addStyleName("someClass");
It will help you to write a more concise code, without inline styling that could be difficult to maintain.