Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 861 Bytes

File metadata and controls

37 lines (26 loc) · 861 Bytes
layout default
title Page3B
parent Dropdown

This is Page 3B

My First JavaScript

Click me to display Date and Time.

Replace "Microsoft" with "W3Schools" in the paragraph below:

Try it

Please visit Microsoft!

Change background color <script> function myFunction() { var str = document.getElementById("demo2").innerHTML; var txt = str.replace("Microsoft","W3Schools"); document.getElementById("demo2").innerHTML = txt; } function changeBgColor(id) { id.style.backgroundColor = "Lightblue"; } </script>