Go Back to website

compuhelpindia.com

Javascript Tutorial

Compuhelpindia.com
                                                                                                                                                     Next Chapter »


JavaScript is the scripting language of the Web.
All HTML pages are using JavaScript.
Examples in each Chapter
Example:
<!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1>
<p>Click the button to display the date.</p>
<p id="demo"></p>
<button type="button" onclick="myFunction()">Check Here</button>
<script>
function myFunction()
{
document.getElementById("demo").innerHTML = Date();
}
</script>
</body>
</html>

My First JavaScript

Click the button to display the date.