to implement messaging system with auto save to drafts

i need to implement messaging system with auto save to drafts. after some time or on accident click to another page. Help me …

Hi,

try using js




setInterval(function(){/*do ajax saving*/}, 60000);//save every 60 seconds



and




jQuery(window).unload(function(){/*do ajax saving when leaving your page*/});



Thank u