I have a quick question: is it possible to make a event from when a list elements title is changed?
Example:
<ul>
<li id="li_1" title="40">40</li>
</ul>
When title attribute changes to (the change come from the server asp.net code):
<ul>
<li id="li_1" title="60">40</li>
</ul>
a event in jQuery should run.
Example with textbox: when a value is written and the user clicks anywhere, the "blur" event in jQuery runs.