Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Focus and Blur Events in jQuery

Style fields and show help text on focus/blur.

Focus and Blur Events in jQuery — a practical guide to jQuery focus blur with clear examples you can reuse in real projects.

jQuery Tutorial Series (25/101). Prefer one article? Read the complete jQuery tutorial.

Short description

focusin/focusout bubble; focus/blur do not.

focus blur

$('input').on('focus', function () {
  $(this).addClass('is-focused');
}).on('blur', function () {
  $(this).removeClass('is-focused');
});

Leave a reply

Your email address will not be published. Required fields are marked *