Answers

Question and Answer:

  Home  DHTML

⟩ How DHTML work with JavaScript?

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>

 179 views

More Questions for you: