Is there a trigger within jQuery that will detect changes in attributes' values?
As an example:
<div id="thisField" value-grabbed='1'></div>
to
<div id="thisField" value-grabbed='2'></div>
and jQuery gives me an alert after the change saying "done."
EDIT----
I'll more than likely going to change the attributes' value using the .attr()
code.