Wednesday, July 1, 2015

jQuery, toggle the display





To change display none
 row.find("td input.memo").css("display","none");
to display 
 row.find("td input.memo").css("display","block");
But this may case alignment distorted, it id better to use toggle
   row.find("td input.memo").toggle();