I am using the Handsontable plugin and when the user changes the values in the cell, it should turn yellow so they can keep track of what has been changed. In this case, yellow is class .changeInput. The tricky part is when you double click the cell to change it, this becomes a textarea and no longer a td. Any ideas? Thanks in advance.
jQuery
$("textarea.handsontableInput").change(function (){
//$(this).find(td).addClass('changeInput');
$('.htNumeric .current').addClass('changeInput');
});
to mark every cell that have change you can create a custom renderer and apply only if data("change") exists like this
http://jsfiddle.net/PAH5J/8/
EDIT
to move the highlighted area you can use the cellProperties instead of .data() like this