firefox

Firefox To Play Ogg

I have an ogg/audio file converted from mp3 using Alt WAV MP3 Ogg Converter. When I drag and drop the file in Firefox or in Google Chrome, the audio plays nicely. But when a use the following code to place the file inside a page it only works on Chrome. My code is simple as that: <audio controls> <source src="foo.ogg" type="aud...

Why does FireFox 3.6.8 not cache static contents from asp.net developer server?

I am working on a asp.net web site, like normal user, we use asp.net developer server during coding and testing. Today, I found the firefox not cache any static file of my site, since our application is pretty big, it made page load time very slow. I checked firefox about:cache, all the static file cache setting looks like Ke...

Tweaking Firefox 4's orange buttom

I'm working in my version of a solution to remove the ugly orange buttom in Firefox 4 Aero, I think it works very well, except with this configuration: Menu Bar: Off; Navigation Toolbar: Off; Bookmarks Toolbar: On; Tabs on Top: Off. It hides the window buttons because I collapse the formerly orange button when tabs are not on top. It's...

Display problems being faced in firefox

I have a list of tags which when clicked, display a page which contains more info about that particular tag. In fact, it describes it in detail, in a i-frame . The issue i am facing is that, when my firebug version 1.5.4 is enabled the details ares displayed but when i disable the Firebug, the details do not get displayed. the coding h...

How to make elements appear under a <UL> in Firefox & IE8?

I recently applied the answer supplied for the question "How can I get a <ul> to be evenly spaced across the content area it exists in?", to my list of tabs. This worked fine for me, but any elements after the list of tabs appeared to the right of the <ul/> element, instead of under it. I applied a clear: both; rule to the CSS for my <u...

Firefox bug - dynamic input element

Bug: http://www.chubbyfish.co.uk/bug.html I'm dynamically creating the 3rd input field, and then adding a value to it (of "input 3 value"). Refresh the page several times and you'll see input4 and input5 get filled up with the same value. Why? Any ideas?! If you can fix it I'll buy you a luxury yacht and a new house! ...

IE and Firefox regular expression question

Why the following pattern in IE and Firefox matches result different? var str = 'a,b,c , d, e ,f'; var matches = str.split(/(\s+)?,(\s+)?/); alert(matches); IE: a,b,c,d,e,f firefox: a,,,b,,,c, , ,d,, ,e, ,,f how to match like IE result? please answer me :( ie8 and firefox v3.6.8 ...

Do XUL applications work only on Firefox

I've seen an XUL-based application recently that supposedly works on the desktop. Isn't XUL the Firefox language? I thought it wouldn't work on anything other that Firefox and certainly wouldn't work as a desktop application. Can someone who knows more about XUL confirm its compatibility with other browsers (IE, Chrome, etc.) and if it ...

Force Firefox to Reload Page on Back Button

How do you make Firefox rerun javascript and reload the entire page when the user presses the back button? I was able to do this in all browsers except Firefox from the help of another SO question by adding this code: history.navigationMode = 'compatible'; $("body").unload(function(){}) And also adding an iFrame... But this doesn't ...

JS: Error in IE, compatible in Chrome and Firefox

I'm having IE give me this error for a small function I wrote: Message: Object expected Line: 13 Char: 52 Code: 0 Here is my code (please excuse the formatting): function SectionTwo() { if (xmlhttp.readyState==4) { if( xmlhttp.status==200 ) { if( xmlhttp.responseText.indexOf( "404 Error" ) >= 0 ) { } ...

Request.InputStream returns empty stream in Firefox 3.5.11

My ASP.net application allows users to upload files via AJAX. Generic Handler (.ashx) handles uploaded files. Up to now one user got error while uploading. User told that his browser is Firefox 3.5.11. I also setup that version and tested the system. I realized that context.Request.InputStream returns empty stream. I couldnt find an...

FireFox button to open a specific URL with a parameter?

I'm looking for a way to write "xyz" in FireFox, and when I press a button, a URL of the form "http://www.something.com?ID=xyz" will open. How Do I do that? Thanks! ...

How to make a site-lookup addon for Firefox?

I'd like to create an addon for Firefox that would enable me to search a particular site by selecting text on one site and choosing to search another site by selecting that option in the context menu. I already have an extension like that in my browser - the Wikipedia Lookup extension. Basically, I want the exact same functionality but...

XSLT breaks jQuery/Prototype Script in Firefox

I am working on a school project. It's an internet page with XML / XSLT. For the design we thought about an image fading effect in the background. I made it as you can see and it works perfectly on IE7. But checking it in FF 3.6 throws some suspicious errors in firebug und does not work. For example: alert($('menu_bg').innerHTML); ...

Firefox Extension Developement how to debug preferences page?

How do I debug, like console.log(); the Preferences Page of the Extension? Thanks ...

JS: xmlhttp.status==0 in FF only.

Been stuck on this for the last hour. It was working fine a while ago and I can't tell what's causing it to abort... It works fine in IE and Chrome. Here's my code: http://pastebin.com/Su1y2TTZ Does not get past line 10 in FF, and shows no errors. The getvalue.js file starts on line 125. Need some urgent help... Any ideas? ...

browser issue in php??

i design one form for registration of users. in that i use tag in i use align="center" <fieldset style="width:618.233px;" align="center"> but now problem is that in IE it run successfully.But in firefox it cant accept "align=center". it just display form bydefault(means left align) i cant user tag because form get ugly look. what...

innerText solution for Firefox

I have written a lot of pages last month and today I realized that innerText doesn't work in Firefox. I found textContent, but I don't want to dig my tons of pages. Also sometimes I used jQuery.text, it seems to work everywhere. So question: what is the simplest way out of this hell? ...

C# How to drag drop a firefox tab to a winform application

In firefox, you can dragdrop tabs to either bookmarks or any text field, but is it possible to drag drop these tab outside of firefox? Also, is there a better way than string vHTMLNames = (string)e.Data.GetData(DataFormats.Html, false); to get a dragdrop of html adress? (It is annoying to have to scan the string to find the adress ...

How to find the firefox version from within a XUL app

I have a firefox addon which works for firefox version 3.0 onwards. However, a particular feature works only for FF 3.5 onwards. I wanted to check from my addon's code that if the FF version is less than 3.5 then I shall disable the particular feature. Can someone please tell me how can I find out FF version from my addon's code? Thank...