[jQuery] bind function error Please help

[jQuery] bind function error Please help


Hi all,
I tried the following example:
====================================
function handler(event) {
alert(event.data.foo);
}
$("p").bind("click", {foo: "bar"}, handler)
=================================
I am getting the following error:
===================
c[j].apply is not a function
===================
Please help me how to fix this issue ..
Thanks in advance.