firefox

jQuery UI + Gmaps = Problems (for me at least) HELP!!

Hi there! I started using jQuery as soon as I found out about it, it is very powerfull but I started struggling when I tried to load Gmaps api into the tabs jQuery UI brings. Strangly enough in IE 6,7,8 it works fine, but in Firefox, Safari (I'm using mac but tested it in windows and they both give the same problems) the map doesn't loa...

Why does this only work in Firefox?

I've created a self-contained example to find out why this is only working in Firefox: var ul = jQuery('<ul></ul>'); jQuery(selector).children().each(function() { var li = jQuery('<li></li>'); var label = '<label for="' + this.id + '">' + this.name + '</label>'; li.append(label); li.append(this); ul.append(li); }); Any...

where did the elasticfox add-in go?

I new development machine and I'm just getting it set up. I found the S3 organizer through the firefox add-in option, but I can't find the elastic fox --- where did it go? ...

appendChild in a XUL Firefox addon breaks

I am working on a Firefox addon and I currently need to dynamically add menuitems to a menupopup element. I have tried basically all of the approaches on the Mozilla Developer Center and none of them work. function populateDropdown() { var counter = 0; for (var key in services) { var newMenuItem = document.createElementNS("http:...

Linking two Flash Player windows together...

We have a Flex 3 application of which the main .swf is running in Firefox. Lets call this application Main.swf. I'm required to create a secondary .swf, call it Panel.swf which is to be embedded in a separate Firefox popup window, which will be invoked via ExternalInterface calling JavaScript from Main.swf. Is it possible to link Main....

Have Firebug Break when a global variable X is defined

We have a very large JavaScript application where after many months of coding there have inevitably sprung a couple scope slip ups where a variable is defined in the following fashion: function() { x = 5; ... } instead of: function() { var x = 5; ... } This is happening somewhere -- We're not sure where -- and s...

finding firefox version

How to find Firefox version using python? ...

ThickBox Problem on firefox (overflow:hidden no work)

Hi, i need a help with thickbox. I use it in my website, but a function of overflow:hidden, dont work in firefox, just in IE. Someone can helpme? thanks... html and css no problem, my problem is thickbox, becausa it work in IE 6 or 7, but no in mozilla(all versions). look the code; function tb_show(caption, url, imageGroup, leg, ttlTb)...

XUL event: new page loads / get content of a page

How can I catch the event when "a page starts to load in the Browser"? How can I access the HTML and manipulate it with XUL? ...

Browser automation: Python + Firefox using PyXPCOM

I have tried Pamie a browser automation library for internet explorer. It interfaces IE using COM, pretty neat: import PAM30 ie = PAM30.PAMIE("http://user-agent-string.info/") ie.clickButton("Analyze my UA") Now I would like to do the same thing using PyXPCOM with similar flexibility on Firefox. How can I do this? Can you provide samp...

CSS not loading in Firefox

I have a web page I am testing in both IE and FF. It works perfectly in IE but the style sheets will not load in Firefox. Has anyone else experienced this type of issue with Firefox ? Also note that this is only on my dev workstation loading the files locally... Here is the header section of the html file: <head> <link rel="stylesh...

Firefox and UniversalBrowserWrite privilege

If I try to write: netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite'); Firefox 3 tell me that to my script have been negated the UniversalBrowserWrite privileges! Now I want to execute in my LAN a program that is maximized in a fullscreen mode and I want to use privileged statements for the windows as toolbar...

How to get firefox language setting ?

for example in ie we can use "navigator.systemLanguage" to get language setting but how to get language setting in firefox way? thx your response. Cloud ...

Firefox api - access from my program

Is it possible to access Firefox info from my program? Specificly I need to read URL of opened site in active tab. Is something like this possible? I guess I can write extension that will allow me to do something like this, but I wanted to know if it is posible with some FF api... ...

Javascript problems with IE, and Prototype 1.6.0.3

The code below works perfectly fine with Firefox, however, I am having problems with IE 8... and 7... instead of populating the select's with the options returned from my php script (like it does in FireFox) it is doing nothing in IE. I have narrowed the problem down to $('city').innerHTML -- works in Firefox not IE. Any ideas? This...

How to retrieve the URL of the active tab in Firefox using C#?

From a C# windows application, how can I find the current URL of the active tab in a Firefox instance is? Does Firefox have any API for this? If so, can it be accessed using C#? ...

Vimperator recommended setting

By way of study of Vim, I have begun to use Vimperator add-on for Firefox recently. Therefore please teach it if there is recommended setting. Thanking you in advance. ...

Firefox Ajax jquery call error

Hi! I am developing an application but I am having problems to get it to work in Firefox. The application recieves javascript calls from educational applications (websites that are showed in shared window) and it is supposed to return values from a .net webservice. The values must be returned in the same function that recieves the call....

firefox extension, jquery and accessing the document.

Hey, I can easily traverse the current window while I'm inside the pageLoad function in my extension using content.document, but when I try accessing it in another function, called with setInterval, I can't access the content.document. I tried content.document, document.defaultView, window.content.document and basically every other sen...

get urls of firefox tabs from firefox extension

In a firefox extension, how do you enumerate the current window's tabs and retrieve their URLs? ...