Hi Amet,

���Assuming you're coding just for IE, you should bookmark 
http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp
which is a reference covering all elements, methods, and properties in the IE 
DOM.

���Quick example for what you want to do:

// Create the element
var sText = document.createElement("<input type='text' name='txtStart' >");

// Make it the child element of some other object on the page, like a table cell
var myCell = document.getElementById("myTableCellID");
myCell.appendChild(sText);

Cheers,

Peter

 From: "amet" [EMAIL PROTECTED]

how can I insert html elements (like textbox ) to the html page without posting 
the page?I know it can be done with javascript..when user clicks on a button,a 
textbox should be inserted to the page.help please.....



[Non-text portions of this message have been removed]



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to