Is there any way to use the onClick html attribute to call more than one JavaScript function?
|
|
||||
|
|
But really you're better off not using onClick at all and attaching the event handler to the DOM node through your JS code. This is known as unobtrusive javascript. |
|||||||||
|
|
A link with 1 function defined
Firing multiple functions from
|
|||
|
|
|
I would use the element.addEventListener method to link it to a function. From that function you can call multiple functions. This could be useful... https://developer.mozilla.org/en/DOM/element.addEventListener The advantage I see in binding an event to a single function and then calling multiple functions is that you can perform some error checking, have some if else statements so that some functions only get called if certain criteria is met. |
|||
|
|
|
Sure, simply bind multiple listeners to it.
|
|||||||
|