firefox6

Did localStorage just break in Firefox 6.0.2 on Mac?

ε祈祈猫儿з 提交于 2019-12-11 04:37:12
问题 I'm playing around with HTML5. For that purpose I created some small Javascript widget using localStorage amongst other things. Up until yesterday Firefox played nice. Then 6.0.2 came around and suddenly the localStorage object is null. Going to http://html5test.com shows that Local Storage is not supported. Using Chrome to view the exact same code (found at http://scriptonomicon.dk/CCDashboard/index.html) works fine. Using Firefox 6.0.2 on Windows (7) works just fine. Has anyone else

jquery ui 1.8.16 & firefox 6 - sortable not working properly

自作多情 提交于 2019-12-08 06:52:32
问题 As I was developing an application with jQuery (latest version), my firefox browser decided to update itself to version 6. Right after that, I got the standard jquery ui "sortable" function not working properly. I tried on the jquery website and same thing. Tried with the demo files downloaded with the jquery ui bundle => same result. No hacks, no custo, just vanilla. Here are the symptoms: starting the sorting (by clicking and dragging the mouse around), the sortable element sticks to the

window.opener.focus() problem in FF5+

孤街浪徒 提交于 2019-11-29 11:39:15
I'm opening new window with next code: window.open(url,pageName1,"menubar=1,resizable=1,scrollbars=1,status=yes,width=1050,height=820"); so window is not modal In new window I'm calling: if (window.opener) window.opener.focus(); in IE, Chorme, FF3.6 parent window become in focus, BUT not in FF5 or FF6, how I can move focus to parent window? FF4+ prevernt window raising and lower by default, you can enable in options: Tools->Options->Content->Advanced... (in "Enable JavaScript" row)->Check "Raise or lower windows" I'm leaving here my contribution to anyone wants to open popup in background. The

window.opener.focus() problem in FF5+

别说谁变了你拦得住时间么 提交于 2019-11-28 05:14:56
问题 I'm opening new window with next code: window.open(url,pageName1,"menubar=1,resizable=1,scrollbars=1,status=yes,width=1050,height=820"); so window is not modal In new window I'm calling: if (window.opener) window.opener.focus(); in IE, Chorme, FF3.6 parent window become in focus, BUT not in FF5 or FF6, how I can move focus to parent window? 回答1: FF4+ prevernt window raising and lower by default, you can enable in options: Tools->Options->Content->Advanced... (in "Enable JavaScript" row)-

JavaScript alert not working in Firefox 6

我的梦境 提交于 2019-11-27 01:27:00
I tried running this JavaScript code in the address bar in Firefox 6: javascript:alert("Hello") I get a ReferenceError: alert not defined. It used to work fine in Firefox 5 though, and still works on Opera, Safari and Chrome. How do I fix this? It seems using javascript: and data: URLs (directly in the address bar) are currently not allowed as per this comment : FYI, I'm probably going to split this bug into multiple, short and longer term fixes. Short term: disallow pasting of javascript: URLs into the URL bar Longer term: additionally require that bookmarklets be "whitelisted" in the

JavaScript alert not working in Firefox 6

隐身守侯 提交于 2019-11-26 12:27:25
问题 I tried running this JavaScript code in the address bar in Firefox 6: javascript:alert(\"Hello\") I get a ReferenceError: alert not defined. It used to work fine in Firefox 5 though, and still works on Opera, Safari and Chrome. How do I fix this? 回答1: It seems using javascript: and data: URLs (directly in the address bar) are currently not allowed as per this comment: FYI, I'm probably going to split this bug into multiple, short and longer term fixes. Short term: disallow pasting of