Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <html>
  2. <body>
  3. <p class="ram-description">Your device memory is <span id="result">unknown</span> GB.</p>
  4.  
  5. <script>
  6. document.getElementById('result').innerHTML = navigator.deviceMemory || 'unknown'
  7. </script>
  8. </body>
  9. </html>
  10.  
  11. <html>
  12. <body>
  13. <p class="ram-description"><b id="result">Your device memory is <b id="result">unknown</b> GiB.</p>
  14.  
  15. <script>
  16. document.getElementById('result').innerHTML = navigator.deviceMemory || 'unknown'
  17. </script>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement