Click here to Skip to main content
15,887,974 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to do some action on client side in web application
Posted
Comments
Sushant Joshi 30-Sep-10 2:02am    
What action do you exactly want to do. Javascript is a huge topic, if you could be bit more specific, I can provide you some pointers

 
Share this answer
 
<head>
function some_action()
{
alert("some action on client side in web application");
}
</head>
<body>
<input type="button" onclick="some_action()" value="Show alert box" />
</body>
 
Share this answer
 
v2

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