Possible Duplicate:
jQuery: more than one handler for same event
I am using a jQuery slider plugin that creates two buttons. These buttons have click events attached to them by the plugin as they are used to control the slider. I have created my own mouseover\mouseout events independent of the plugin (inline with the webpage) to handle animations. I would like to create one for click as well (so that the button changes color). Will me creating another click event handler override or break what the plugin does? Is it bad practice and is there a better way?
Having two events is no problem. You can assign as many events to an object as you like.
This is logical as you most likely want different functions to fire depending on the event that’s triggered. And 99% of every jQuery-plugin will have no problem dealing with objects with multiple events. Try it and ask a question if you have any problems.
The only thing that is not good is inline js 😉