I was wondering which one of the above methods is preferred or is the general guideline that you use $(elem).click() for simple things and < a onclick="func(1, 2, 3, 4);" > when you need to pass parameters to the script when the element is clicked? I've been trying to only use $(elem).click() to keep the code clean and simple, but when you have to pass more than one parameter it gets tricky and function call on onclick="" seems like a better solution.
|
|
|
|
|
|
|
I'd go with the
in the script you can do this:
|
||
|
|
|
|
You can pass parameters to a function when you use jQuery:
I prefer to always use jQuery for my event handling. I don't like putting any behavior in my HTML, even with Also, if you programmatically click something using |
||
|
|
|
|
Hi, If the parameters could be determined at the moment of the click, I would suggest the binding method:
One case I could think of of doing it inline, is if you're building multiple links in a loop where params 1, 2, 3 or 4 are varying according to a backend variable or something:
Personally, I always try to bind to the event in a $(document).ready() callback. Hope this helps |
||
|
|
|
|
One of the main ideas behind jQuery is unobtrusive javascript (i.e. HTML and javascript are two great tastes that don't taste great together). Using the jQuery object and selectors to attach the functions is what they would prefer you do. |
||
|
|
|
|
I prefer to use $(elem).click() to keep my HTML javascript-free, I consider it cleaner. |
||
|
|
|
|
That seems like what you want, no? |
||||||||||||
|
