Given code that calculates (and then constructs) how many text boxes a page has:
var gEmails = '<p>Please enter your desired emails</p>';
for (var i = 0; i < numInputs2Render; i++) {
gEmails = gEmails + '<input type="text" id="Email' + i + '" class="emailInput">';
}
How can I add code that can tell each input has been blurred by the user? This answer gets me oh so close but i need code that is fired when one of my dynamic text boxes hears a blur event so I can test for non-empty condition in _all matched inputs.
thx