I'm adding a Textbox with javascript, it works except for the border
attribute, any advive
Thanks
John
var formFld = document.create Element('input' )
formFld.setAttr ibute('type', 'text')
formFld.setAttr ibute('id', txt)
formFld.value = document.getEle mentById(lb).in nerHTML
formFld.name = txt
formFld.setAttr ibute('width',' 30')
formFld.setAttr ibute('border', '3px solid #FF0000')
attribute, any advive
Thanks
John
var formFld = document.create Element('input' )
formFld.setAttr ibute('type', 'text')
formFld.setAttr ibute('id', txt)
formFld.value = document.getEle mentById(lb).in nerHTML
formFld.name = txt
formFld.setAttr ibute('width',' 30')
formFld.setAttr ibute('border', '3px solid #FF0000')
Comment