[jQuery] data parameter in live

[jQuery] data parameter in live


Hi
I have used bind method with data parameter many times
$('#mydiv').bind('click', {val:a},myfunc);
but in live method there is no such thing.
$('#mydiv').live('click', {val:a},myfunc);
Is there a work around to do achieve the task.