In Javascript/Jquery what is faster/better. Using the event properties as such:
$('#aPQD_Employer').on('change', function(e){
(e.currentTarget.selectedOptions[0].label == "Other")?
$('#aPQD_EmployerOtherDIV').show()
:
$('#aPQD_EmployerOtherDIV').hide();
});
VS
$('#aPQD_Employer').on('change', function(e){
($('#aPQD_Employer').find(":selected").text() == "Other")?
$('#aPQD_EmployerOtherDIV').show()
:
$('#aPQD_EmployerOtherDIV').hide();
});