i want the event to happen only on to the username input type but it is occurring on each and every input type on the page. I need spaces to be restricted only in the username and not in other fields. Please provide with the appropriate event or event restriction technique.
Javascript:
<head><script>
$("myst()").on("onmouseover", function (e) {
return e.which !== 32;
});</script></head>
Html:
<input type="text" name="fname" placeholder="First Name">
<input type="text" name="lname" placeholder="Last Name"><br>
<input type="text" name="username" onmouseover="myst()" size="56" placeholder="User Name"><br>
<input type="text" name="email" placeholder="Email Address">
<input type="text" name="email2" placeholder="re-enter your Email Address"><br>
<input type="password" name="password" placeholder="Password"><br>