'write()' Example : document « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- document
'write()' Example
<html>
<body>
<script language="JavaScript">
function function1() {
var m = "<p>This is a sample text. First paragraph.</p>";
m += "<p>This is the second paragraph.</p>"
document.write(m);
}
</script>
<input type="button" value="Add some HTML content to this page" onClick="function1();">
</body>
</html>
Related examples in the same category