Guest User

Untitled

a guest
Mar 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <script>
  2. function autoSaveEntry() {
  3. if($('#txtarea').val().length>0){
  4. $('#message').append('Text is saved');
  5. setTimeout(function () {
  6.  
  7. $('#message').fadeOut(function(){
  8. });
  9.  
  10. }, 3000);
  11.  
  12. }
  13. setTimeout(autoSaveEntry, 60000)
  14. }
  15. </script>
  16.  
  17. <div id="#message"></div>
  18. <textarea id="txtara"></textarea>
Add Comment
Please, Sign In to add comment