> How can I pass a parameter to an eventhandler?
>
> for example:
>
> $("td").bind("click", test)
>
> function test(message)
> {
> alert(message);
>
> }
>
> How do I give the message parameter to eventhandler test?


See examples here:

http://docs.jquery.com/Events/bind

Reply via email to