V
Size: a a a
J
V
IK
IK
A
A
A
$('selector').click(function(){
$('selector').anything('do');
});
var sel = $('selector');
sel.click(function(){
sel.anything('do');
});
A
const sel = $('selector');
sel.click(() => sel.anything('do'));
A
$('selector').click(function(){
$(this).anything('do');
});
IK
EМ
EМ
EМ
Р
Р
EМ
EМ
V
J