Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926765
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:03:23+00:00 2026-06-15T08:03:23+00:00

I am using the event listener structure like below to do some stuff when

  • 0

I am using the event listener structure like below to do some stuff when the input box loses focus.

But it won’t work. What event should I listen to, to get the moment the input box loses the cursor inside it (i.e. user clicks outside of it)?

document.getElementById('div inside which input is located')
    .addEventListener( 'blur',  function(e){
        if(event.target.className=='editInput'){
            doStuff(event.target);
        }
     } , false );
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:03:24+00:00Added an answer on June 15, 2026 at 8:03 am

    The correct event is onBlur. Look at this code:

    <!DOCTYPE html>
    <html>
      <head>
        <title>element</title>
        <script type="text/javascript">
          function message() {
            var text = document.getElementById("test").value;
            alert(text);
          }
        </script>
      </head>
      <body>
        <input type="text" name="test" id="test">
        <script type="text/javascript">
          document.getElementById("test").onblur = message;
        </script>
      </body>
    </html>
    

    It works and prints the content of the input when it loses focus. Maybe your error is that you attached the event to the div and not to the input?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I using the code below to add an event listener to the body but
Want to attach an Event Handler/Listener to some links using the delegate() method, but
How do I pass arguments using ActionScript's event-listener? I have code, as given below,
I'm reading data from a serial port using an event listener from the SerialPort
I'm developing a JavaScript application using Google Visualization API. I wrote a event listener
I have a custom event listener being added (fluently) to my configuration using: .ExposeConfiguration(c
Possible Duplicate: Event listener in Java without app having focus? (Global keypress detection) I
This is the structure of HTML. I have to add an event listener when
I am trying to capture events on localStorage using an event listener. As storage
I am using Extjs for my application. Which event/listener is fired when extjs completely

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.