/    Sign up×
Community /Pin to ProfileBookmark

Disable Enter button

I added some Javascript to a page on my website…
[url]http://tomorrowschampion.com/advocare-login/[/url]

It is working fine, the problem is whenever someone types in their ID number and they press “Enter” it goes nowhere. They have to physically hit the “Submit” button. How can I disable the enter key in that specific page or link it to press the submit button?

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@SparoHawkNov 01.2012 — Your button is a "button". To make it submit when its clicked you need to change the type to submit.

[CODE]<input type="submit"/>[/CODE]
Copy linkTweet thisAlerts:
@George88Nov 02.2012 — Yes, make it a submit button. Just out of interest, if you did want to disable the enter key, you could do this:

<i>
</i>&lt;input id="password" type="text" name="password" size="20" onkeypress="return handleEnter(this, event)"&gt;

function handleEnter(field, event)
{
if(event.keyCode == 13) // Enter has been pressed
{
event.stopPropagation();
event.preventDefault();
return false;
}
}


However, I do not recommend doing this since the problem can be solved in 6 letters (submit).
×

Success!

Help @yumet08 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...