passing multiple variables to js function
Hello, my English is not at his best but I will try...
Code:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function myFunction(var1,var2)
{
alert(var1 + " & " + var2);
}
</script>
</head>
<body>
Username: <INPUT Type="Text" Maxlength=11 Name="UsernameField" Style="WIDTH: 80px; HEIGHT: 20px" Size=11 Id="Username"/>
Pass: <INPUT Type="Password" Maxlength=11 Name="PasswordField" Style="WIDTH: 80px; HEIGHT: 20px" Size=11 Id="Password" /> <BR>
<button onclick="myFunction(form.UsernameField.value,form.PasswordField.value)">Login</button>
<p>By clicking the button above, a function will be called. The function will alert a message.</p>
</body>
</html>
Like you can see, i pass 2 variables to a js function and with that function, i will display them, something goes wrong, you know?
Thank you in advance