0% found this document useful (0 votes)
11 views2 pages

WEB JOURNAL Bca

Web journal bva

Uploaded by

Prathamesh Patil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

WEB JOURNAL Bca

Web journal bva

Uploaded by

Prathamesh Patil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

NAME: VISHWAJIT VILAS PATIL

ROLL NO: 1368

EXPERIMENT NO:1

Q.1 WRITE AN EVENT DRIVEN JAVASCRIPT PROGRAM TO CHECK IF A PERSON IS ELIGIBLE TO


VOTE OR NOT.

<!DOCTYPE html>

<html>

<head>

<title>Voting Eligibility</title>

</head>

<body bgcolor="yellow" text="black">

<h1>PROGRAM TO CHECK IF THE CANDIDATE IS ELIGIBLE TO VOTE OR NOT</h1>

<script language="javascript">

function newenter()

var age;

alert(" VOTING PROCESS ");

age = parseInt( prompt ("Enter Candidate Age:"));

if (age>=18)

document.write("THE CANDIDATE IS ELIGIBLE TO VOTE");

else

document.write("THE CANDIDATE IS NOT ELIGIBLE TO VOTE");

}
}

</script>

<form name="f1">

<input type="button" value="click" onMouseOver="newenter()">

</form>

</body>

</html>

OUTPUT:

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy