
Hi,
What is Dynamic HTML? Explain with dynamic html examples.
Thanks

Hi,
DHTML stands for Dynamic HTML and is uses the HTML, JavaScript, DOM, & CSS in a program.
Following is very simple example of DHTML. Following example displays alert message on bodyonload:
<html>
<head>
<Title>DHTML Example</Title>
<script type="text/javascript">
function ShowMessage()
{
alert("Message called on Body on load");
}
</script>
</head>
<body onload="ShowMessage()">
</body>
</html>
Thanks