Table of Contents

HTML - blur

About

When the element loose its focus, it's said to blur.

When an element blur, it fires the blur event.

Programmatically

A navigation of the user can blur the element but you can also do it programmatically

document.activeElement.blur()
$(document.activeElement).blur();
OSZAR »