Are we going to be able to pass parameters to the callback live
function like we can with event callback functions?

function foo(e) {
  alert(e.data.bar);
}

$function(){
  //This works right now:
  $('a').bind('click', {bar:'fubar'}, foo);

  //This doesn't:
  $('a').live('click', {bar:'fubar'}, foo);
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" 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-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to