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 ...
Are there specific Conditional Comments available for older versions of Firefox? (eg 3.0)
...
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...
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
...
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?
...
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 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
...
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...
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'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?
...
<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 ...
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 ...
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?
...
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...
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...
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...
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...
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...
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
...
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..
...