Advertisement
szymcio93

js browser

Jun 9th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. function Browser()
  4. {
  5. if((navigator.userAgent.indexOf("MSIE") != -1 ) || (!!document.documentMode == true )) //IF IE > 10
  6. {
  7. alert('Remember to activate your copy of Windows');
  8. }
  9. else
  10. {
  11. alert('Take it easy. Keep suring');
  12. }
  13. }
  14. window.onload=Browser();
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement