2
I have a li
with the id buscaBT
, when I click on it, it leaves a div inside that li
(formularioBusca
) as display:block
, so far, quiet, everything working. I did so:
$( "#buscaBT" ).click(function() {
$( '.formularioBusca' ).css('display','block');
});
My question is: I want when the person hovers the mouse off that div, it closes.
Would that be : jquery mouseout ?
– user13219