Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
how can i execute a script from a click of a html button on a web page?
Posted
Comments
Sergey Alexandrovich Kryukov 8-Jun-12 14:05pm    
What is broken? Google, Bing? Too bad... :-)
--SA

 
Share this answer
 
Here:
HTML
<input type="button" id="ClickToRunJS" onclick="CallJS();" />

JavaScript
function CallJS()
{
   alert("OnClick on a HTML button was triggered!!!");
}
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 8-Jun-12 14:28pm    
Sandeep, could you explain this "önclick" instead of "onclick"? I can see it only on CodeProject, but often.
--SA
Sandeep Mewara 8-Jun-12 14:33pm    
Looks like, It's the CP's HTML PRE tag converter I guess. Just check what I have posted using 'Improve Solution' link.

I typed the whole answer by hand with normal english keyboard, yet after I noticed what was posted after seeing your comment that there are dots on top of 'o' of onclick.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900