firefox

Mozilla Firefox problem with Javascript and Flash communication

Hi, I have a script that displays a list of song names and when the user clicks a 'listen' button the filename is passed to a Flash player which loads and plays the mp3. This works fine for Safari and IE but not in Mozilla. Does anyone know of any issues around Mozilla and using Javascript to pass variables to flash and call functions in...

Javascript Firefox problem

Hi, I am trying to execute the following code from a firefox extension but it is not working. The actual code inside the else part was different but even this simple for loop is not getting executed. alert box without the for loop is working. Can someone have any idea about why this is not working. Thanks window.addEventListener("pages...

Strange http gzip issue

Here's a strange one: I've got nginx reverse proxying requests to apache 2 with mod_php. A user (using firefox 3.1b3) reported that recently, he's started getting sporadic "What should firefox do with this file?" popups during normal navigation. We haven't had any other reports of this issue, and haven't been able to reproduce it ours...

In a firefox extension how to save a copy of a pdf opened in the browser window

I have a Firefox extension and in some cases when a user navigates to a PDF I'd like to save a copy of the file. This is easy when the PDF is downloaded (as I can use nsIObserverService to get the file), but when the PDF is opened in the browser using the Adobe Reader plugin I can't see how to get the file without downloading it again. A...

Firefox's CSS3 "nth-child" support?

According to css3.info's selector test, Firefox 3.0 supports some permutations of the nth-child selector. However, the code shown here (#30) doesn't work for me. It should select the empty paragraphs, so I edited my code to the following but it doesn't show in Firefox (it works in Opera). <style type="text/css"> div :nth-child(even) { ...

How to use innerHTML on plain txt files in Firefox?

If you open a text file (.txt, .js, .css, ...) in your browser, it will get wrapped up in a nice DOM tree. For example, open this .txt file and enter javascript:alert(document.documentElement.innerHTML); into your address bar. Nice... every major browser supports DOM manipulation on this wrapped text files, which is a great thing for...

Problem with jquery append & appendTo

Hi All I was trying to use append to put the block content onto bottom of body and show with absolute position, but when display it my input checkbox becoming non clickable on on FF. Has anyone faced this kind of issue ? Thanks js: var box = $('#subbox'); box.css('top', 200); box.css('left', 300); $(document.body).append(box); ...

Why a pop-up alert can affect "designMode"?

I was expreimenting to build a page editor. One issue just drove me crazy in firefox. The page code is below: <body> <iframe WIDTH=200 HEIGHT=200 id="myEditor"></iframe> <script> function getIFrameDocument(sID){ // if contentDocument exists, W3C compliant (Mozilla) if (document.getElementById(sID).contentDocument){ ...

Silverlight installed in Firefox 3, but not detected/activated

Hi, As the title says really. We are working on a Silverlight banner on a redesign of our site and the Silverlight content works fine in all browsers except Firefox 3 (PC v3.0.7,8 or Mac v3.0.8). The Add-in is marked as having been installed, however. The problem page is at: http://clearvision.programx.co.uk/Schools/Students.aspx (Not...

Issue with AutoCompleteExtender rendering

I am using AutoCompleteExtender in my application and somehow the the suggestion box started appearing not right under the text box but rather 20-30 pixels below. After digging through the generated HTML i noticed that it renders as UL and LI elements, while in the samples downloaded from ASP.NET it renders as DIV inside DIV and works f...

Turning off auto-complete for text fields in Firefox

Am supposed to be learning French at the moment, but rather than learning any vocab, I've been mucking around with a rails app that tests vocab - so it displays a word, and I have to type its translation. Unfortunately, Firefox remembers everything I've already type there, so which diminishes its usefulness somewhat. Is it possible, th...

Prototype select all checkboxes code works in IE, but not Firefox

I'm using prototype 1.6.0.1. I'm trying to select all the checkboxes when clicking a button. This code works in IE 6, but does NOT in Firefox 3. What am I doing wrong? <input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" /> ...

How to remotely control Firefox from a script on OSX

I need to write some scripts that access some websites. A script from command line would get some pages, post some forms, screen scrap some information etc. It cannot really be a library "browser" like libwww-perl because some steps might require user interactions (captchas, ajax-only forms, any interaction surprises etc). The most pr...

jquery fade effect not working in FF

This piece of code fades the div fine in IE. In Firefox 3.0.8, the fade time goes by and the div disappears instantly. I can't find anyone mentioning this problem. $(function() { $("#show").click(function() { $("#show").fadeOut('slow'); }); }); <div id="show">this is where to show i...

How can you use Firefox's JavaScript engine offline?

I have jQuery code which works offline in Safari and Opera, but neither in Firefox 3.1 nor 3.08. How can you use Firefox's JavaScript engine in offline debugging? ...

Why doesn't ":active" work properly inside a Gecko frame?

It seems to me that Gecko has a bug involving ":active". To illustrate, put this into a file called test.html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "hxxp://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" > <head> <style type="text/css"> .clic...

WMV scaling in Firefox 3.0.3

I am having problems with my WMV file playing in its original resolution and not scaling to the size of the windows media frame. Here is the code: <p> <object height="420" width="585" type="application/x-oleobject" standby="Loading Microsoft Windows Media Player components..." codebase="http://activex.microsoft.co...

Regarding Google Safe Browsing API

Does anyone know how to use the Google safe browsing API. I downloaded the entire the malware and phish update from the google safe browsing using the API key and tried comparing the hash of the suspicious site (md5_file method in php) but it did not work. I also tried comparing the hash of the suspicious site's url (md5 method in php)....

Firebug "whitelist" mode

How do I get Firebug to do this: (from the Firebug website http://getfirebug.com/using.html) You can browse in two modes - either enable Firebug for all websites except those on the "blacklist", or disable Firebug for all websites except those on the "whitelist". How do I get the second option? I don't want Firebug running for every si...

Ajax request and text/xml

I am requesting and xml file over ajax, the server uses the header text/xml for the data returned. Firefox reads this header and turns the data into an XMLDocument object which means I can't use it with jQuery. How can I get my XML document as plain text? ...