Can I get a couple of good examples on how to bind 3 separate functions I've got going on?
2 Answers
Create one function that calls all three and then bind to that function.
Or use an anonymous function:
$("#MyItemID").bind("click", function(){
func1();
func2();
func3();
});
You can also use the shorthand event. So (e.g.) for click:
$("#MyItemID").click(function(){
func1();
func2();
func3();
});