Here is some code that I am working with
--html--
<INPUT type="text" name=a1c />
--js--
document.myquiz.a1c.value = "CORRECT!";
How can I replace the string "Correct!" with an image???
Something like this:
document.myquiz.a1c.value = "<img src ...... />;
Thank you
--html--
<INPUT type="text" name=a1c />
--js--
document.myquiz.a1c.value = "CORRECT!";
How can I replace the string "Correct!" with an image???
Something like this:
document.myquiz.a1c.value = "<img src ...... />;
Thank you
Comment