This topic is locked

move into the page by return key

10/25/2009 3:41:57 AM
PHPRunner General questions
T
thiethie17 author

hello,
who can we move in the visual page by the return key ?

it's for use a barcode system.

actualy we move with the tab key!!
thanks
Thierre

J
Jane 10/26/2009

I'm not sure that I understand your question. What does 'return key' mean?

T
thiethie17 author 10/26/2009

i'm sorry is the ENTER key!!!
thanks

Thierry

J
Jane 10/26/2009

Hi,
use custom JavaScript code for this purpose.

Here is just a sample:

http://bytes.com/topic/javascript/answers/485036-javascript-change-enter-key-tab-keypress

D
danaci 10/26/2009

hi,

this code is not working.

Where is the my mistake?

thnx.
<html>

<body onkeydown="if (event.keyCode==13) {event.keyCode=9; return event.keyCode }" >

<form action="<?php echo $PHP_SELF; ?>" method="post">

Ad <input name="ad" type="text" size="6" maxlength="16" />

Soyad <input name="soyad" type="text" size="6" maxlength="16" />

<input type="submit" name="gonderim" value="Gönder" />

</form>

<?

</body>

</html>