Re: linking an event event CSS

Hi Rick,

On Feb 23, 2010, at 15:03 , Rick wrote:
> This may already be possible, but I don't know about it, how about binding an event to elements using CSS?
> 
> For instance, to somehow be able to link, say link onclick, globally to <rect class="dragTarget" ...>
> 
>  .dragTarget { ...; onclick:do_drag(evt); ... }
> 
> I like it. 

No, that's not something that's defined by the spec but you can do it anyway with jQuery:

  $(".dragTarget").live("click", do_drag);

-- 
Robin Berjon - http://berjon.com/

Received on Wednesday, 24 February 2010 16:57:00 UTC