mike509123
MIS
I have the following line of code in my javascript.
document.all['test_label'].firstChild.data = '<img src="/images/cabinet.gif" height=15 width=15>Check this out';
When it goes to render the page it displays it as
<img src="/images/cabinet.gif" height=15 width=15>Check this out
Any idea why the image is not showing up? Anyway to modify that line of code so it interprets the image?
document.all['test_label'].firstChild.data = '<img src="/images/cabinet.gif" height=15 width=15>Check this out';
When it goes to render the page it displays it as
<img src="/images/cabinet.gif" height=15 width=15>Check this out
Any idea why the image is not showing up? Anyway to modify that line of code so it interprets the image?