function change() {
alert(event.target.value);
}
$(event.target).val()
<b>event</b>t
Clone.prototype = this;
$('body').on('click', '.dropdown', function(e) {
$('.dropdown').not(this).removeClass('active');
if (e.target === this) $(this).toggleClass('active');
e.stopPropagation();
});
$(document).click( function(){
$('.dropdown').removeClass('active');
});
$(document).on('click', '.dropdown', function(e) {
$('.dropdown').not(this).removeClass('active');
$(this).toggleClass('active');
});
$('body').on('click', '.dropdown', function(e) {
$('.dropdown').not(this).removeClass('active');
$(this).toggleClass('active');
e.stopPropagation();
});
$(document).click(function(){
$('.dropdown').removeClass('active');
});
С ними может быть два варианта:
Мой вам совет, вообще никогда не используйте inline хандлеры. Как минимум, ваш код будет читаемей.