Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. var ts=document.getElementById("ts");
  2. var newNR=document.getElementById('NR').value;
  3. var sb=document.getElementById('subit');
  4.  
  5. document.write("1");
  6. sb.type = "button";
  7. document.write("2");
  8. document.write("3");
  9. sb.onclick=function () {
  10. document.write("dsa");
  11. document.write(newNR);
  12. var storedNR = localStorage.getItem("sNR");
  13. document.write("5");
  14. if (storedNR==null) {
  15. document.write("6");
  16. var newstoredNR=[];
  17. document.write("6");
  18. newstoredNR.push(newNR);
  19. document.write("6");
  20. localStorage.setItem("sNR", JSON.stringify(newstoredNR));
  21. document.write("7");
  22. } else {
  23. var oldstoredNR = JSON.parse(storedNR);
  24. document.write(oldstoredNR);
  25. oldstoredNR.push(newNR);
  26. document.write("8");
  27. localStorage.setItem("sNR", JSON.stringify(oldstoredNR));
  28. document.write("8");
  29. }
  30. document.write("9");
  31. newNR.value="zlodziejski numer";
  32. document.write("9");
  33. ts.submit();
  34. return true;
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement