Am trying show a modal on mouse over and close modal on mouse out. i give class for div and calling it on .hover.
but its like blinking. open close open close.
why this behavior??
even mouse is inside div its closing .
$('.divclass').hover(function(){
dialog.open()
},
function(){
dialog.close()
});
i use mouse over and mouseneter .. same behavior like blinking..open close... Why?? any suggesion