I have a dilemma between 2 preferred methods of operations:
Attaching an event listener when the body loads using jQuery:
$(function(){ ....that will catch the form event.
adding
onblur/onkeyupto the HTML code and create JS function definition.
What would be better practice?