VBScript DHTML??

admin

Administrator
Staff member
Hello -

I keep reading that in theory VBScript is DHTML capable, but can't seem to find any info on this, tutorials, samples, etc, even on the MSDN site. Does anybody ACTUALLY use VBScript for DHTML?

I've found a few very extremely simple examples that use onmouseover event handlers, but nothing that actually accesses the DOM interface or creates DOM element objects - for example, how would I do this statement sequence in VBScript?

var d = document.createElement("DIV")
d.innerHTML = "foo"
document.body.appendChild(d)

Thanks for your thoughts, comments or suggestions!

- Hnorris
 
Back
Top