You are on page 1of 6

Name : Chaitanya Ramdas Bhosale

Roll No : 78

Enrollment No : 1815770231

Batch : 4

<html>

<head>

<h1>onclick event</h1>

<head>

<script>

function sayHello(){

alert("Hello World");

</script>

<body>

<form>

<input type="button" onclick="sayHello()" value="say hello">

</form>

</body>

</html>
<html>

<head>

<script>

function myFunction(){

document.getElementById("demo").innerHTML = "Hello World";

</script>

</head>

<body>

<p ondblclick="myFunction()">

Double Click This Pragraph to Trigger a Function.</p>

<p id="demo"> </p>

</body>

</html>
<html>

<head>

<script>

function myFunction(element, clr){

element.style.color= clr;

</script>

</head>

<body>

<p onmousedown="myFunction(this,'red')" onmouseup="myFunction(this,'green')" style="font-


size: 3rem;" >

Click Me And Change My Color

</p>

</body>

</html>
ss

You might also like