firefox

SSL Certificate Mismatch in IE 7+, OK in Firefox 3.6+

Hello, We have a site www.name1.domain.com for which we successfully created and implemented an SSL cert. We then added another site, www.name2.domain.com, and are seeing some strange behaviour in IE7 and IE8 (surprise!). Basically, IE7,8 reports a mismatch of host name when we go to https://www.name2.domain.com/ . When I add and view ...

Conditional Comments Firefox

Are there specific Conditional Comments available for older versions of Firefox? (eg 3.0) ...

XSLT disable output escaping when disable-output-escaping is not supported

Hi folks, Since disable-output-escaping doesn't work on firefox (and isn't going to), whats the next best way of including raw markup in the output of an XSTL transform? (Background: I've got raw HTML in a database that I want to wrap in XML to send to a browser to render. I've got control of both the XML and the stylesheet, but no c...

Printing problem

Hi there, Time to ask an odd question. window.print(); Prints only one page of 2 pages in IE8 & IE7 even the same prints both pages in FF. Now if I cancel the print dialog and just go to File -> Print I get both pages in both IE & FF. window.print(); is included in ONLOAD Any idea why? Thanks Babak ...

Different width result in different browser $("#div1").width() ?

I am using jquery to determine the width of the control:- $("#div1").width(); There is a difference in width of the div between IE8 (in compatibility view) and Firefox. Width is not same. e.g ie : 1887 FF : 1898 How to tackle it? ...

Passing null as a param for replace() in javascript behaving weird?

I have the follwing jQuery: $("#textArea").keyup(function(){ var textAreaValue = $("textArea"); if(!textArea.value.indexOf("some string")){ textArea.value = textArea.value.replace("some string",null); alert("It was there!"); } }); Is it normal for e...

How to edit css selectors to test something in Firebug?

How to edit selectors to test something in Firebug? for example if i want to test this #Homepage #thirdCol a as a #Homepage #thirdCol > a how to test like this in firebug ...

What's the difference between FireBug's console.log() and console.debug() ?

A very simple code to illustrate the difference. var x = [0, 3, 1, 2]; console.debug('debug', x); console.log('log', x); // above display the same result x.splice(1, 2); // below display kind of a different result console.debug('debug', x); console.log('log', x); The javascript value is exactly the same but console.log() displays it...

Shift + / Key combination not getting detected by javascript in Firefox on Mac OSX

This javascript code always returns zero for " Shift + / " key combination on Firefox 3.6.3 on OSX 10.5.8 But it returns the expected value 191 on Chrome on OSX/mac GetKeyCode = function(e) { var code = 0; if (!e) { e = window.event } if (e.keyCode) { code = e.keyCode; ...

In mozilla firefox, how do I dock the dom inspector to the bottom of the current tab?

In mozilla's firefox browser is it possible to dock the dom inspector to the bottom of the current browser tab? Similar to the internet explorer developer toolbar? ...

Safari doesn't display 'alt' text on Images?

<img src="image_that_may_or_may_not_load.png" alt="Show this text if image not loaded" /> Safari doesn't seem to show 'alt' text in case the image is not loaded. I'm not sure about other browsers, but Firefox does show the alternate text. Its so important to display alt text in email templates where the images would be blocked by the ...

Firefox back issue

Hello, I am using a menu that switches from standard state to select state for an item by reading the current url var where = document.location.href; My issue is that when using Firefox, if I switch to some items from the menu (for instance, I click home, donwload, contact) and press the back button the url is not read correctly so ...

Adding h.264 <video> support to XULRunner

Like Firefox, XULRunner only ships with support for ogg (and soon, webm) in the HTML5 video tag. Is there a relatively simple way to add h.264 support to it for all three major platforms? Perhaps a compilation flag, or a plugin I can add to it? ...

Background-image is not displaying in Firefox

Strange thing happens. Background-image is not displaying in Firefox under some versions of WindowsXP and Windows Vista, but displays in Firefox under Mac OSX. It also displays in IE. This is CSS: .cherry_banner { background: url("library/media/images/cherry_banner_top.png") no-repeat; width: 276px; display:block; min-height:100px; padd...

session variables become unset when reloading page

hello, my basic issue: i allow a user login using a form, passed to a verification page, which then registers variables and lastly allows the user (me) to visit the posting page. now, on this posting page i allow a content management system (edit and delete old posts). i do so by displaying results in a div that is formatted with sc...

Cursor/Caret position cannot be set for ContentEditable after changing parent elements position

Hello, I am developing a webpage editor tool which is based around using an iframe to load the page into, and setting various defined elements in that page as "contenteditable" to allow text to be entered/changed. My editor UI has a "fullscreen mode" option which allows the editor iframe to take up the entire width/height of the browser...

Error in FireFox Loading Images

Hello, Details of the app are: ASP.NET project, local web server, hosted in IIS locally, using latest FireFox, uses forms authentication. I'm getting a logon user name/pwd box when trying to access my local web server. Using the net panel in firebug, I see the issue is with an animated GIF, showing up as 401 unauthorized. I check the...

jQuery works in FF but not in Safari

I have some event handlers that work in FF and not in Safari. Simply put, I have a list of friends, some hard-coded, some pulled in from a database. Clicking on a buddy opens a chat window... this is much like the Facebook chat system. So in Firefox, everything works normally and as expected. In Safari, clicking on buddies that are har...

Attempt to open browser in C++

Hey there, I am attempting to open Firefox using C++ on Linux (Ubuntu). However, I get an segmentation fault. What am I doing wrong, and what should I do? std::cout << system("/usr/bin/firefox") << std::endl; I hope to hear from you. Kind regards, Machiel ...

How to show ellipses to the overflew text for HTML elements in Firefox ?

I need to show the ellipses(...) if the text overflows in DIVs and SPANs. I have a CSS attribute called text-overflow:ellipses. But this works only in IE. I want to display the same in other browsers like Firefox/Chrome etc.. ...