Multiple Functions on a Single Event with JQuery/Javascript -
what best way call 2 functions upon single click event?
there multiple elements requiring script, script must act upon element being clicked — not elements @ once.
let me know if need provide more details. again help.
$(function() { $('a').click(function() { func1(); func2(); }); });
Comments
Post a Comment