Hi debussy007,

see the tutorials section on events bubbling:

http://docs.jquery.com/Tutorials:AJAX_and_Events


example:
$(document).ready(function() {
 $('body').click(function(event) {
   if ($(event.target).is('h3')) {
     $(event.target).toggleClass('highlighted');
   }
 });
});


On Feb 13, 2008 12:12 AM, debussy007 <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> is it possible to know wether the mouse is over a specific element or not ?
>
> Thank you for any help !
>
> :thinking:
> --
> View this message in context: 
> http://www.nabble.com/Determine-if-mouse-is-over-a-specific-element-tp15445464s27240p15445464.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.
>
>



-- 
Alexandre Plennevaux
LAb[au]

http://www.lab-au.com

Reply via email to