Ask Your Question
4

How can I use onBlur on form elements excluding the reset button?

asked 2022-01-06 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-07-17 22:00:00 +0000

plato gravatar image

You can use JavaScript to target all form elements except the reset button and attach an onBlur event to them. Here's an example code:

// Get all form elements except reset button
var formElements = document.querySelectorAll('form input:not([type="reset"]), form select, form textarea');

// Attach onBlur event to form elements
formElements.forEach(function(element) {
  element.onblur = function() {
    // Write your onBlur function code here
  }
});

This code uses the querySelectorAll method to select all form elements that are not of type "reset" and attaches an onblur event to them using the forEach method. Inside the function, you can write your own onBlur function code.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-06 11:00:00 +0000

Seen: 9 times

Last updated: Jul 17 '22