Closed radekdostal closed 11 years ago
+1
Will be fixed in 24h.
+1
This is such a cool plugin, does exactly what I was looking for. Will this be updated to work on 1.9.1? Thanks in advance :)
I added the following:
// Updating for 1.9.0 var browser = { chrome: false, mozilla: false, opera: false, msie: false, safari: false }; var sBrowser, sUsrAg = navigator.userAgent; if(sUsrAg.indexOf("Chrome") > -1) { browser.chrome = true; } else if (sUsrAg.indexOf("Safari") > -1) { browser.safari = true; } else if (sUsrAg.indexOf("Opera") > -1) { browser.opera = true; } else if (sUsrAg.indexOf("Firefox") > -1) { browser.mozilla = true; } else if (sUsrAg.indexOf("MSIE") > -1) { browser.msie = true; }
And used browser. instead of $.browser and it seems to work, just in case you wanted to use any of this
delete doesn't seem to work in FF
Hi, jQuery 1.9.0 no longer supports $.browser. Can you please fix it?
Thx