Jump to content

Onkeyup?


GuitarGod

Recommended Posts

Hi all,

 

I'm having some trouble with Javascript onkeyup, not quite sure why it's not working.

 

<script type="text/javascript">
document.getElementById( 'text_input' ).onkeyup = function()
{
// do stuff
}
</script>

<input type="text" id="text_input">

 

I know it can be done by adding onkeyup="myfunction()" to the input textbox, but for development purposes it would be easier done using the style above.

 

Any ideas?

Link to comment
Share on other sites

Post the script under the input text box or run "document.getElementById("text_input")" on page load or something. Your code currently doesn't work because "text_input" is not defined when you call it on line 2.

 

EDIT: Putting "document.getElementById("text_input")" inside a function and calling it later (after defining the element "text_input") also works.

Edited by Amplivyn
Link to comment
Share on other sites

Hi,

Add the <script> after the HTML that is accessed in the script. Because the code of the script is executed in the same moment when is loaded, and not see the html element wich is after it.

<input type="text" id="text_input">
<script type="text/javascript">
document.getElementById( 'text_input' ).onkeyup = function()
{
// do stuff
}
</script>

It is indicated to have the <script> before the closing </body>, where all the other html elements are loaded.

Link to comment
Share on other sites

Christian is correct. You should allow the page to load, then initiate your JS.

Demo: http://xaotique.no-ip.org/tmp/31/

 

HTML

<input type="text" id="myInput" />

 

Javascript

// Wait for page to load.
window.addEventListener("load", function()
{
   // Watch for keyup trigger.
   window.document.querySelector("#myInput").addEventListener("keyup", function()
   {
       // Remove numeric characters.  (Just for example use.)
       this.value = this.value.replace(/[0-9]/g, '');
   }, false);
}, false);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.