denmardiyana

script books

Jun 21st, 2021 (edited)
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.addEventListener("DOMContentLoaded", function () {
  2.  
  3.  
  4.     const submitForm = document.getElementById("form");
  5.  
  6.  
  7.     submitForm.addEventListener("submit", function (event) {
  8.         event.preventDefault();
  9.         addBook();
  10.     });
  11.  
  12.  
  13.     if(isStorageExist()){
  14.         loadDataFromStorage();
  15.     }
  16.  });
  17.  
  18.  
  19.  document.addEventListener("ondatasaved", () => {
  20.     console.log("Data berhasil disimpan.");
  21.  });
  22.  document.addEventListener("ondataloaded", () => {
  23.     refreshDataFromBooks();
  24.  });
Add Comment
Please, Sign In to add comment