I read the following, but still want to discuss.... Meaning of evt = (evt) ? evt : window.event
//Would evt need to be passed because it is not used in the function??? --- Trying to get my mind wrapped around this jQuery stuff.
A)
$('#' + _ids.btnPrintServiceCode).on('click', function (evt) {
alert('Hello World')
});
OR
B)
$('#' + _ids.btnPrintServiceCode).on('click', function () {
alert('Hello World')
});