here is my current function:
$('.EmailAddresses').on('keypress', 'focusout', $('input:text[name^="Customers[0].EmailAddresses"]'), function (e) {
emailRadioBtns(e);
});
But this is not working. Does anyone know how to call the same function with multiple events using the .on()?
use instead
all event names must be enclosed in the same string and separated by a white space