I am creating a cfwindow from JS with this:
ColdFusion.Window.create('testwindow', 'This is a test');
I also need to be able to write content to the window from JavaScript. That will
include JavaScript variables. I have tried doing it with this:
elementName_body.innerHTML='This is the body';
I cannot get it to work at all. It pops the window up but noting in the content.
Anyone have any ideas?
Thanks in advance for any help.