I have button which is "Click me", and mouseover() works for only this button the problem is about new buttons. I cant add css with addClass.
$("button#Clickme").on({
click:function(){
$("div.Div").append('<button class="Clicker" >New Button</button>');
}
});
$("button.Clicker").mouseover(function(){
$(this).addClass("button");
});
$("button.Clicker").mouseout(function () {
$(this).removeClass("button");
});