firefox

Can't understand why one of these solutions work and the other doesn't in IE8, works fine in FF.

Scenario: Drop down pre-populated, user can click to select items which refreshes content based on an array of id's obtained from anchors within a div. EDIT #1:- Okay okay, If I alert out items in the change event they will work in FF, IE alerts them out but just doesn't assign content to #panels as per the load content function. But, ...

problem with firefox to parse the xml file using google map api

Possible Duplicate: how to parse xml file using google map api I have the following code which returns xml output sucessfully but their is problem with parsing xml and displaying output on the map.when i look the request and response output on firebug i am sucessfully getting xml file but problem with parsing that particular f...

Firefox 4 - NPAPI plugin works with 3.6 now declared corrupt!

Can anyone help with packaging a simple NPAPI plugin so it is compatible with Firefox 4, we have a plugin that works fine in all previous versions of Firefox but when it is tried it on Firefox 4 Beta 5 (latest version as of the question) then the browser declares it is corrupt. If I run Firefox with the -console parameter on the command...

HTML: caching problem with textarea+firefox

hi, i have a textarea which contains some encoded html and i'm experiencing weird caching problems with firefox. for the first time i displayed it anything was fine, then i cleared the textarea's content manually. i refreshed that page and since then the textarea remains empty. i already added this to the header: <meta http-equiv="Pr...

TR-height shift in firefox

var userRows = new Array(); function removeUser(user) { userRow = $("#user-"+user); userRows[user] = userRow.html(); userRow.addClass("removed").html('<td>User removed</td>'); // I would give the td above the correct colspan // Now the user will be removed using AJAX } When running the JavaScript/jQuery code above, somehow i...

How to prevent a box with overflow-y: scroll from stealing the focus on tab on Firefox?

Consider a page with the following code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <style type=...

WPF Firefox 4 Top Bar?

How would one create the top bar such as in Firefox 4's Orange bar? I don't want to do my own window class as I still want to be hardware accelerated rather than sofware rendered. Is there a way to do this? ...

How to get -moz-user-focus: ignore to work?

My understanding is that when using -moz-user-focus: ignore (see doc) on an element, Firefox should skip that element when tabbing. However, try: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> ...

Computed column width is different than css declared width for column. How does browser decide width?

Let's say I have an html table with a css declared width of 750px. It has 5 columns and each column has a width of 50px, declared using css (all td's have a 50px width). Obviously, the sum of the columns' widths is 250px which is less than 750px. When the browser renders the table, each column has a different computed width. I have one...

Problem with connecting to google map url to fetch lattitude and longitude for particular location

I have the following code to fetch lattitude and longitude for given address but the permission to google url is denied . function getlatlng(address, callback) { var addressval = address; var address; var url; var googleUrl = "http://maps.google.com/maps/api/geocode/js...

How can I get list of open tabs in firefox via a command line application

I have a lot of tabs open in Firefox. After I close firefox and then run it again, the tabs are there, that's all right. However, from time to time, Firefox crashes and my tabs are lost. I would like to somehow get the open tabs and backup the list to some file. Any ideas? (With tabs in file I can also use git/svn/whatever to store the...

firefox + flash disabled the ALT GR key : how to solve that ?

I am facing a big problem in firefox: the ALT GR key is disabled on some simple pages: (try to type in an email) This simple page DISABLES the ALT GR key <html> <body> <iframe src="http://www.dialogoo.com/vdialogoo.php?id=2" width="100%" height="100%"></iframe> </body> but if you open http://www.dialogoo.com/vdialogoo.php?id=2 ALT ...

Javascript working on Firefox but not in Chrome and IE6

I have javascript that working fine in Firefox 3.x.x, but it does not work in IE*, Chrome, Safari. Simple alert work before calling function. Here is the code function showDiv(div){ //alert(div); document.getElementById(div).style.visibility='visible'; document.getElementById(div).style.height='auto'; document.getElementById(div).s...

jQuery: Repeated (undesired) fading in/out in Firefox

I am just now beginning to explore jQuery (v1.4.2) and have constructed a small, static example for purposes of self-education. I'm using Firefox 3.6.9, Chromium 6.0.472.53 and Opera 10.61 on the Linux platform. I find that my example works as expected on Chromium and Opera, but I get a very annoying flickering behavior of jQuery fadeI...

why if (element.innerHTML == "") is not working in firefox

why is if (element.innerHTML == "") not working in firefox but works fine in IE , any ideas please ? ...

@media calls working in Firefox

I'm trying to center a poem, but if the window width gets too small, i.e. landscape -> portrait, I want the poem to (1) left align and (2) word-wrap. Here are the 2 .css files. First, the default case: /* css/default.css */ #header, #poemWrapper, #footer { text-align: center; } #poem { width: 28em; } Now, here iss the thin v...

Frameset not showing up in FireFox or IE. Fine in Chrome..??!?

For some reason, this very basic page shows up fine in Chrome, but not FireFox or IE. I've never really needed to use Frames before, but they seem simple enough. Is there a problem with using a single frame within a frameset? I am trying to replace an iFrame with this single frame. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 frameset//...

jquery click event not firing in firefox

This function attaches the fancybox plugin to some images. When an image is clicked in the image slider, it opens the corresponding larger image within the '#hidden images' div. It works in Internet Explorer but does not work in Firefox (3.6.9). How do i get it to work in Firefox? <script type="text/javascript"> $(document)...

jquery click event not firing in firefox part two

See here: http://stackoverflow.com/questions/3680011/jquery-click-event-not-firing-in-firefox Any idea why the code doesn't execute in firefox? ...

Why does my contentEditable element become draggable/resizable in Firefox?

I'll be answering this question To my great surprise, I discovered that, after using JavaScript to apply a class to an element and make it contentEditable, the element suddenly gained draggable and resizable UI elements. This only occurs in Firefox. Why does this happen and how can I fix it? ...