I have the following JQuery function being attached to the blur event of n textboxes on a webpage.
$(document).ready(function() {
$(\"input[id$=\'_tx
JQuery doc for Core/each:
Execute a function within the context of every matched element.
This means that every time the passed-in function is executed (which is once for every element matched) the 'this' keyword points to the specific DOM element. Note that 'this' does not point to a jQuery object.