jQuery on blur

$("#yourElement").on('blur', () => {
    // your code
    alert('ok');
});
lff