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
jQuery will handle that for you quite nicely, see example:
$('div').click(function(){ alert($(this).text()+' clicked'); }) .click(function(){ $(this).css({'color':'#ff0000'}); });
Button 1 Button 2
Here's a jsFiddle example: http://www.jsfiddle.net/pcASq/