You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Can I add Expose to a div onmouseover? Created Oct 11, 2009

This thread is solved

Views: 2784     Replies: 1     Last reply Oct 11, 2009  
You must login first before you can use this feature

ghporras

Posts: 9

Registered:
Oct 11, 2009

Can I add Expose to a div onmouseover?

Posted: Oct 11, 2009

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!

ghporras

Posts: 9

Registered:
Oct 11, 2009

» Can I add Expose to a div onmouseover?

Posted: Oct 11, 2009

Reply to: Can I add Expose to a div onmouseover?, from ghporras
Take a look of a page that I implemeted:http://gozatelaciudad.gabrielizalo.com/directorio/bares.asp

There there are 3 sections... Each one have the Expose tool with click. I want to change it for mouseover, but I have the problem I told in thr previous post.

Thanks!