1 Dec
2006
1 Dec
'06
1:50 p.m.
Could anyone help me.. how do I use DTML to return the type of the object I'm currently working with?
If you want to get the html elements like <b> <p> <input> you should have a look at javascript - document.getElementsByTagName("p") you can cominate it with for or while loops or go directly to the objecs document.getElementsByTagName("p")[0].firstChild.data = "new"; - cs