What is the best way to call two functions upon a single click event?
There will be multiple elements requiring this script, so the script must act only upon the element
$(function() { $('a').click(function() { func1(); func2(); }); });