firefox

How to name a file for download on Firefox?

The following headers work on IE but not on FF <%@ Page Language="C#" ContentType="text/csv" Inherits="System.Web.Mvc.ViewPage"%> <% Response.AddHeader("Content-Disposition", "filename=report.csv;attachment"); %> In FF the suggested name in FF appears as "report" without the extension. ...

CSS Overflow Side Effect Involving Rad Editor and jQuery .animate

I have the following items in a web page: an instance of the Editor from Telerik's RadControls for ASP.NET AJAX: call it "Editor" a div that can change position by means of jQuery's .animate function: call it "divAnimate" a div with a css overflow setting inside divAnimate: call it "divOverflow" When divAnimate moves, the part of Edi...

ImageButton in UpdatePanel causes full postback in Firefox

I have an updatepanel that has an Image button: <asp:ImageButton ID="btnChangeMedium" OnClick="Change_Click" runat="server" /> When the page loads, based on some logic, I set the onclick attributes in the code behind. btnChangeMedium.Attributes.Add("onclick", "ChangeMedium();"); Works greate in IE. In FF, the imagebutton causes a p...

Cross Domain JavaScript parent location setting firefox error

Here is the case: page A contains iframe B, B contains iframe C, A and B are under the same domain, C under another. C tries to reset parent B's location with extra information following "#" to solve cross domain communication using Fragment Id Messaging. IE6/7/8 just works fine with this case, while Firefox blocks parent.location settin...

Catching applet exceptions in Firefox

In IE in the ff. code, the catch clause is entered if someMethodThatThrowsExceptions does throw an exception. However, this is not the case in Firefox. Is this a limitation in Firefox's Javascript engine or LiveConnect implementation? Does a workaround exist? try { document.applets["someApplet"].someMethodThatThrowsExceptions(); } ...

JavaScript causing "A script on this page may be busy, or it may have stopped responding." error in Firefox

I wrote a page by javascript that has over 1000 lines of code and so the page is so heavy. when i run the page on the firefox, it tell me that: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: http://localhost:5070/resource...

CSS Hack to Target Firefox 3.5+?

Firefox 3.5 now supports the nth-* pseudoclass, which was what I was using to target my css for Safari and Chrome. Now Firefox reads those too, causing minor layout issues. Does anyone know a way to specifically target FF 3.5+? BODY:nth-of-type(1) #topsearch input[type=submit] /* Safari 3.1+ and Chrome */ { height:19px } ...

asp.net mvc actionlink shows address in FF, cannot get button to function

I'm currently in the process of learning ASP MVC and am running into a few issues. First, when I use <%=Http.ActionLink("Add / Modify", "AddModify" %> it will show as Add / Modify (/Home/AddModify) in Firefox and Add / Modify in IE. It is doing that to all links in FF and none in IE. Anyone know what reasoning is for that? Edit: ...

Firefox extension multiline notification

I'm currently developing a firefox extension that monitores some ressource on the web and displays a notification for certain events. Currently I'm using the 'nsIAlertService' the following way: var alertsService = Components.classes["@mozilla.org/alerts-service;1"].getService(Components.interfaces.nsIAlertsService); alertsService.showA...

jquery Label Insertion Problem in Safari

I am inserting a label after a field to show the user an error message. The problem is after it is first inserted, it's top half is cut off then when you tab out of the field it fixes itself. There is no problem at all in FireFox. I have deployed the form to: http://thredup.atomicvapor.com/regtest/index.html I have also posted the co...

document.getElementById fails for single-tag DIV

I have 2 DIVs on an HTML page: <div id="divDebug" /> <div id="divResult" /> I have a script that hits a web service and fills them up with data: document.getElementById("divDebug").innerHtml = rawResult; document.getElementById("divResult").innerHtml = processResult(rawResult); Here's my problem: The above code works nicely in IE...

detect geode, fire eagle, or google gear installed on browser

is there any demo on how to detect geode ,fire eagle, google gear installed on user browsers and get user location? ...

A really weird problem - site works in FF3.0 not in FF3.5

Can someone please look into this. http://bit.ly/9DmPX Click on showcase, then on the logo it should open a modal window with the logo, everything works fine in FF 3.0 but in FF 3.5 the tab switches from showcase to home after clicking the logo. But wait it is more weirder, if you observe, the first time you click on the thumbnail it ...

prevent iframe content reload on hide in firefox

In my webapplication I hide an iframe using jquery hide() function. Surprisingly firefox reload the content of iframe when the iframe is hidden. Is this a known problem? Is there a workaround? I also tried to hide the iframe setting css style display to 'none'. Same result. The script work as expected in opera. I'm using firefox 3.5.1 ...

jQuery - Are animations and jQuery scripts in general faster in IE?

My pages use jQuery and these are very fast in IE and Chrome. In Firefox 3 animations and other scripts are definitely slower, even if compared with IE6. I read that jQuery is optimized for IE. Is this the only reason? Are you experiencing similar problems? Thank you ...

input text/textarea size

form: <form id="defineForm" method="POST" action="api/test"> <fieldset> <legend>Generale</legend> <input type="text" name="id" size="60" maxlength="60"/> <input type="text" name="descr" size="60"/> <textarea name="longDescr" cols="62" rows="10"></textarea> using cols="62" for "longDescr" and size="60" for...

Silverlight 3 on Mac OS X in Firefox 3.5 doesn't work!!

I'm trying to upgrade my site to Silverlight 3. All my customers are having a reasonabily good experience from upgrading to Silverlight 3 from Silverlight 2 or just a fresh install. But on Mac OS X in Firefox 3.5, after Silverlight is installed they cant view any Silverlight apps, it's just blank on screen. No errors, I can right click ...

Firefox 3.5 fixed-position scrolling annoying flicker

Please try to scroll down this page with the newest version of Firefox (3.5) http://resopollution.com/rentfox/html5/dashboard.html =( Is there any way to fix the flickering? Thanks in advance for help! Solution Found you have to add overflow:auto on all flickering divs using position: fixed version here: http://resopollution.com/ren...

Why is Google Maps infoWindow size is different in IE than FF?

I am trying to optimize the usage of the google mas API and have come to an interesting cunundrum. To give greater feed back to the user I am opening the info window using: marker.openInfoWindowHtml(//loader code//) when the user click on the marker. I am loading the infoWindow content via AJAX so after the initial open of the wind...

Factorial in XSLT limit?

Hi. I have the following factorial function implemented in XSLT: <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; <xsl:output method="text"/> <xsl:template match="/"> <xsl:apply-templates> </xsl:apply-templates> </xsl:template> <xsl:template match="facto...