jQuery(function($){
$('.parent').mouseover(function() {
$(this).animate({fontSize : '25px'}, 500);
}).mouseout(function() {
$(this).animate({fontSize : '15px'}, 500);
});
$('.child').mouseover(function(e) {
e.stopPropagation();
}).mouseout(function(e) {
e.stopPropagation();
});
});
mouseover()とmouseover()のバブリングについて(バブリング無)
2020/02/21