I'm an amateur, but maybe you get some ideas from this. Would'nt it be
better to use one function for all of them? And not use the onMouseUp
etc events in the element?

Example; (change all elements to class='droppable' instead of id:

jQuery(function() {
$(".droppable").live('click',function() {
// do stuff here, also find the id first of the element (eg use a
unique id)
});
});

As for the problem, once the click function is fired add a unique
class or change the id name and have another function check for the
onmouseup (blur?) of the element. However blur doesn't go yet with
live..

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to