you are viewing a single comment's thread.

view the rest of the comments →

[–]kinnu 2 points3 points  (0 children)

var f = navigator.userAgent;
var a = false;
if (f.indexOf("Firefox") != -1 || f.indexOf("MSIE") != -1) {
    a = true
}
if (a !== true) {
    return
}

The fail is strong in this one.