It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming JavaScript Forum

move focus... is it correct ?

move focus... is it correct ?

Postby aneuryzma on Fri Apr 10, 2009 9:51 am

Hello,

i would like to know if this is the correct way to move the focus from a field to a button in order to avoid refreshing the page when the enter key is pressed. (It works on Safari.. but I've just realized it doesn't work on Firefox and IE.

Code: Select all
<form name="password1" onsubmit="javascript:submitentry()">
   <input type="text" name="password2" size="15" onkeydown="if (window.event.keyCode==13) javascript:document.getElementById('submitbutton').focus()"><br>
    <input type="button"  class="normaltexte" value="Submit" id="submitbutton" onClick="submitentry()">
</form>


thanks
aneuryzma
 
Posts: 41
Joined: Mon Jan 19, 2009 9:10 am

Re: move focus... is it correct ?

Postby rangana on Sat Apr 11, 2009 4:18 am

IE and Other browser's detecting of keystrokes vary. IE is picky.

If you want to move the focus when the "enter" key is press, you can do it like this:
Code: Select all
<input type="text" name="password2" size="15" onkeydown="var e = event || window.event; key = e.which?e.which:e.keyCode; if (key==13) document.getElementById('submitbutton').focus();">


If you don't want your form to submit when the enter key is pressed, you can actually do it like this:
Code: Select all
<input type="text" name="password2" size="15" onkeydown="var e = event || window.event; key = e.which?e.which:e.keyCode; if (key==13) {return false;}">


Hope that makes sense.
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines

Re: move focus... is it correct ?

Postby aneuryzma on Sat Apr 11, 2009 10:12 am

thanks!!
aneuryzma
 
Posts: 41
Joined: Mon Jan 19, 2009 9:10 am

Re: move focus... is it correct ?

Postby Suffer on Wed Apr 15, 2009 8:23 am

thanks for info rangana.
Suffer
100+ Club
 
Posts: 236
Joined: Tue Jan 20, 2009 6:34 am


Who is online

Users browsing this forum: No registered users and 5 guests