Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <script>
  2. (function() {
  3. if( navigator.userAgent.match(/Android/i)
  4. || navigator.userAgent.match(/webOS/i)
  5. || navigator.userAgent.match(/iPhone/i)
  6. || navigator.userAgent.match(/iPad/i)
  7. || navigator.userAgent.match(/iPod/i)
  8. || navigator.userAgent.match(/BlackBerry/i)
  9. || navigator.userAgent.match(/Windows Phone/i)
  10. ){
  11. document.write('<input type="hidden" name="device" value="mobile">');
  12. } else {
  13. document.write('<input type="hidden" name="device" value="desktop">');
  14. }
  15. })();
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement