<html>
<head>
<script type="text/javascript">
function run(....var e)
{
document.write(e)
}
</script>
</head>
<body>
<input type="text" name="lastname" ..... <!-- what do i put here to run run(and save the input in var e)? />
</body>
</html>
basically i want to be able to access the text taken from the text input box in the javascript function
<head>
<script type="text/javascript">
function run(....var e)
{
document.write(e)
}
</script>
</head>
<body>
<input type="text" name="lastname" ..... <!-- what do i put here to run run(and save the input in var e)? />
</body>
</html>
basically i want to be able to access the text taken from the text input box in the javascript function