|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
Call Event on Pressing Enter Key...
Hi,
I have a textfield which asks for an email address. I want a popup to open as soon as the user clicks on enter in the textfield. onClick ofcourse wont work cause the popup pops up even when i focus on the textfield to enter the email address. Any solution, maybe an event like onEnter??? thanks Neville |
|
#2
|
||||
|
||||
|
Instead of enter, you might want to use onBlur. This way, if the user presses tab, or clicks somewhere else on the page, your function will still be called.
Code:
<input type="text" name="whatever" onblur="alert(this.value)" /> Pressing enter in a FORM is often similar to submitting. You may want to use onSubmit (on the FORM tag)... depends on your ultimate goal.
__________________
Daryl's Homepage | My Blogroll | My Profile | Firefox supporter! DevArticles Forum Moderator "The net is a waste of time, and that's exactly what's right about it." -- William Gibson |
|
#3
|
|||
|
|||
|
Hi,
You can use onkeydown attribute to fetch the event and check it in a script that I've written down below. You can find a list of key codes and a runnins sample script how to find key codes can be found at http://www.kodyaz.com/content/HowToGetKeyCodesList.aspx I hope it helps. <script> function PopUpEmail(e){ if(e){ e = e } else { e = window.event } if(e.which){ var keycode = e.which } else { var keycode = e.keyCode } if(keycode == 13) { alert("Open your Popup Screen") } } </script> <input type=text name=email onkeydown="PopUpEmail(event)"> Eralper http://www.eralper.com |
![]() |
| Viewing: Dev Articles Community Forums > Programming > JavaScript Development > Call Event on Pressing Enter Key... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|