Hi All,
I have a requirement in Javascript.
I want to ( by inheriting the html input text box or by any other way ) create a text box class in javascript. After that, My application will create objects of this javascript textbox class whenver it requires a text box.
Basically what am trying to achieve is,
Instead of creating the html input text elements using
document. createElement('input') again and again i want to create a javascript textbox class and whenever it requires i 'll create objects of this class to have textboxes in my html page.
Is there any way to do this.. ?


