Сергей Жаков
Мудрец
(16209)
7 лет назад
// 1 input с классом my_input
$("input.my_input[type='text']").blur(function(){ alert('.my_input blur'); });
$("p").blur(function(){ alert('p blur'); });
// 2 установка blur событыя на все input type='text'
$("input[type='text']")..blur(function(){ alert('all input blur'); });
// 3 вызов события blur у класса my_input
$("input.my_input").blur();
// вызов blur события у всех тегов P
$("p").blur();