faqts : Computers : Programming : Languages : JavaScript : Forms : TextAreas/TextFields

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 14 people (57%) answered Yes
Recently 4 of 10 people (40%) answered Yes

Entry

how to display a message on click of submit button

Oct 23rd, 2001 20:47
vempati suresh, jeevan bangera,


<html>
<head>
<script>
function fun(this)
{
    this.value="You Have clicked on This"
    return false
}
</script>
</head>
<body>
<form >
<input type="submit" name="display" onClick="fun(this)">
</form>
</body>
</html>