After a user clicks on an image, I want them to see a large blueish button with text on it. Here is the javascript code I used with the Write() method:
<script>
function DoThis()
{
s="<button style=background-color:#aaccdd; font-size:50px; >Hello</button>";
document.write(s);
}
</script>
When I test this code, the button shows up blue but the font size does not change. I've tried adding commas, semicolons, and other variations but nothing seems to work. Any suggestions?