Click to See Complete Forum and Search --> : Where is the appended node?


terminator800tl
03-05-2003, 06:06 AM
http://www.javascriptref.com/examples/ch10/10-310.htm

In the link above, when I insert a new text node(i.e. <p>text<p>) into another html element (i.e. paragraph, div...etc), I could not see any new text node being added into html, although I could see change in browser.

Now, my question is: Assume a input form is inserted that is no visible in html source. If a user then type something and submit it to server, will the newly added input form be visible to the server?

khalidali63
03-05-2003, 06:38 AM
If you meant you could ot see the added node when look at source?,
Of course you won't be able to see that because that information is in the browsers memory only.

An yes of you made changes to a form on the run time and then submitted,it will reflect those dynamic changes but you can not view them using "View source" because they are not hard coded.

Hope it makes any sense

Cheers

Khalid