GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Web  >  java Script

 Print  |  
Question:  How do you call function in javascript?



August 08, 2008 22:13:22 #2
 IRS786   Member Since: August 2008    Total Comments: 2 

RE: How do you call function in javascript?
 
for example:
<html>
<head>
<script type="javascript">
function call()
{
alert{are u calling me!};
}
</script>
</head>
<body>
<form>
<input type="button" onclick="call()" value="call">
</form>
</body>
     

 

Back To Question