Hello...
I´ve tried to add Expose to several divs I have.
I want the divs be exposed onmouseover but the expose works only if I mouseover an image inside the div. If I mouseover an empty space the expose disapper.
My code is, more or les, in this way:
<div class="establecimiento">
<img src="img/Logo.gif" alt="Logo" width="120" height="100" class="logo" />
<h3>Company</h3>
<p>Bla bla: bla bla<br />
Bla bla: bla bla</p>
<p>Bla bla: bla bla<br />
Bla bla: bla bla</p>
</div>
$(function() {
$(".establecimiento").mouseover(function() {
$(this).expose({api: true}).load();
}).mouseout(function() {
$(this).expose({api: true}).close();
});
});
Can the mouseover be permanent?
Thanks!
I´ve tried to add Expose to several divs I have.
I want the divs be exposed onmouseover but the expose works only if I mouseover an image inside the div. If I mouseover an empty space the expose disapper.
My code is, more or les, in this way:
<div class="establecimiento">
<img src="img/Logo.gif" alt="Logo" width="120" height="100" class="logo" />
<h3>Company</h3>
<p>Bla bla: bla bla<br />
Bla bla: bla bla</p>
<p>Bla bla: bla bla<br />
Bla bla: bla bla</p>
</div>
$(function() {
$(".establecimiento").mouseover(function() {
$(this).expose({api: true}).load();
}).mouseout(function() {
$(this).expose({api: true}).close();
});
});
Can the mouseover be permanent?
Thanks!
