Detect IE 6 Javascript


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var IE = /*@cc_on!@*/false;
  2. if(!IE){
  3. /* do something for others browsers */
  4. } else {
  5. /* do something for IE 6 */
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.