Guest User

Untitled

a guest
May 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. if (jQuery.browser.msie && jQuery.browser.version == "6.0") {
  2. alert ("This is less than IE7");
  3. } else {
  4. alert ("This is greater than IE7");
  5. }
  6.  
  7. if ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined)) {
  8. alert ("This is not IE6");
  9. } else {
  10. alert ("This is greater than IE6");
  11. }
Add Comment
Please, Sign In to add comment