1.

How Dhtml Work With Javascript?

Answer»

Using JavaScript we can MADE DYNAMIC HTML content.We can use document.write() to show dynamic content on your web page.Below I have GIVEN you HTML page which made dynamic after using JavaScript.This example will show current date.
Example:
<html>
<BODY>
<script TYPE="text/javascript">
document.write(Date());
</script>
</body>
</html>

Using JavaScript we can made dynamic HTML content.We can use document.write() to show dynamic content on your web page.Below I have given you HTML page which made dynamic after using JavaScript.This example will show current date.
Example:
<html>
<body>
<script type="text/javascript">
document.write(Date());
</script>
</body>
</html>



Discussion

No Comment Found