About 9,030 results
Open links in new tab
  1. onblur Event - W3Schools

    Description The onblur event occurs when an HTML element loses focus. The onblur event is often used on input fields. The onblur …

  2. Element: blur event - Web APIs | MDN - MDN Web Docs

    Jul 28, 2026 · The blur event fires when an element has lost focus. The event does not bubble, but the related focusout event that …

  3. HTML onblur Event Attribute - W3Schools

    The onblur attribute fires the moment that the element loses focus. Onblur is most often used with form validation code (e.g. when …

  4. What is the difference between onBlur and onChange attribute in …

    Apr 24, 2009 · onblur fires when a field loses focus, while onchange fires when that field's value changes. These events will not …

  5. Window: blur event - Web APIs | MDN - MDN Web Docs

    Jul 28, 2026 · The blur event fires when an element has lost focus. The opposite of blur is focus. This event is not cancelable and …

  6. HTML DOM onblur Event - GeeksforGeeks

    Jul 12, 2025 · The HTML DOM onblur event occurs when an object loses focus. The onblur event is the opposite of the onfocus …

  7. React onBlur Event - GeeksforGeeks

    Apr 10, 2026 · The onBlur event in React is fired when an element loses focus. This event is commonly used for performing actions …

  8. HTML onblur Attribute - W3Schools

    The onblur attribute fires the moment that the element loses focus. Onblur is most often used with form validation code (e.g. when …

  9. javascript - blur () vs. onblur () - Stack Overflow

    Jul 1, 2016 · This: ... works because your element (the <input>) has an attribute called "onblur" whose value is a function. Thus, you …

  10. HTML onblur Attribute — Element Loses Focus | CodeToFun

    The onblur attribute runs JavaScript when a focusable element loses focus and the blur event fires. Use it for form validation, …