- From: Robin Berjon <robin@berjon.com>
- Date: Wed, 24 Feb 2010 17:56:28 +0100
- To: Rick <graham.rick@gmail.com>
- Cc: www-svg <www-svg@w3.org>
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