According to my autosave
function (link here). Which is triggered by something change to the element. In this case blur
and change
- input text and checkbox.
I want to make the function working on both typing
and clicking
the box. Because there're both element type in the same line.
I tried $('xxx').on('blur change',function()...
But only change is working. Any idea???