<html>
<head>
<title>Submit Form Information</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function a()
{
nm=document.f.t.value;
document.write("Ur Given Name : "+nm);
}
</script>
</head>
<body>
<form name="f">
ENTER NAME : <input type="text" name="t">
<input type="button" value="CLICK" onClick="a();">
</form>
</body>
</html>
<head>
<title>Submit Form Information</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function a()
{
nm=document.f.t.value;
document.write("Ur Given Name : "+nm);
}
</script>
</head>
<body>
<form name="f">
ENTER NAME : <input type="text" name="t">
<input type="button" value="CLICK" onClick="a();">
</form>
</body>
</html>
Comments
Post a Comment