[Javascript] 사용자가 타이핑을 쉬는 시간에 DB에 저장하기

2020. 10. 27. 00:12실전

var timeoutId;
$('#the-textarea').on('input propertychange change', function() {
    console.log('Textarea Change');

    clearTimeout(timeoutId);
    timeoutId = setTimeout(function() {
        // Runs 1 second (1000 ms) after the last change    
        saveToDB();
    }, 1000);
});

function saveToDB()
{
    console.log('Saving to the db');    
}

stackoverflow.com/questions/19910843/autosave-input-boxs-to-database-during-pause-in-typing