I have problem with my ASP.NET MVC app when use Mozilla Firefox. I'm use JQuery and this code is not functional. In Google Chrome and IE 8 everything is fine. How solve this. If necessary I will post parts of my JQuerycode
In Site master page I include scripts, something like this:
<script type="text/javascript" src="../../Scripts/jq...
I am developing a FireFox extension
when I do xhr to the Secure server , particularly POST a data
it gives a status 500, and following mesage:
onsip.highrisehq.com : server does not
support RFC 5746, see CVE-2009-3555
How can I by pass by It? I assume that this is because of the Server misconfiguration, but I can't wait till so...
I'm Opera user for browsing and Firefox user for developing. Simply I can't work without Firebug and any other tools doesn't fit for me. Geeks from Opera often offers to use Dragonfly which purpose is almost the same like Firebug (JS debugger, DOM/CSS inspector, JS console, page load analysis, etc.). I've tried Dragonfly but returned to...
I don't understand why FF and Chrome render my page differently. Here's a screenie of it in
firefox:
and here's one in chrome
chrome:
fieldset has a relative position and the image has an absolute position.
here's the basic structure:
<fieldset class="passenger-info">
<legend>Passenger 1</legend>
<div class="remove-me">
...
I'm looking into developing a Firefox extension, and would like my 'toolbar' to run in the 'client' area, since it will appear and disappear based on the page that they are on. One example of a client bar that does something similar is the Invisible Hand toolbar. Most of the extension tutorials show how to build a 'regular' toolbar.
...
Hello all, I am trying to create a SIMPLE plugin, no interface is necessary, that will automatically download and save to "Desktop/MyFolder/" everything that the page loads. My thought was to make an extension that extends FireBug, but that seems to be rather challenging. I got it to do some things, however on things like images, flv's...
I'm writing a Firefox extension and I need to hook the download dialog that comes up when the user tries to download a file.
In other words, I need a script-defined function to be notified instead of the dialog appearing as normal.
Where do I begin? I tried reading through the XPCOM API Reference... but this is the closest thing I coul...
Is it possible to see the request which my browser send to the server. Or if it's some addon for firefox.
...
Hi,
I'm trying to implement a function as a part of a firefox add-on with canvas which gives the user the ability to draw.
function draw(event,context,drawit) {
var drawx = event.layerX;
var drawy = event.layerY;
if (!drawit) {
context.beginPath();
context.strokeStyle='rgb(0,255,0)';
context.lineWidth=1;
...
hello,
i have this ajax function working well in firefox and not in ie6
are there some specific issues for ie?
the error is on ths line
document.getElementById(containerid).innerHTML=page_request.responseText
here is the full code i'm using
var bustcachevar=1 //bust potential caching of external pages after initial request? (1=yes...
OK be gentle with me as Im still learning.
The error message shows The background attribute of the TD tag is not supported (Mozilla 1.0)
Yet in Preview in Browswer, for FF and IE, it looks fine.
I'm using a downloaded template that is riddled with stacked and interleaved tables so nightmarish . . its a means to an end till I get up to ...
I am trying to change cursor with .gif image. It will be shown on whole page not only one link. I made it like
<style type="text/css">
body {
cursor:url(Butterfly.gif);
}
</style>
it does not work. I have also .cur file. It works on IE but not on Firefox.
...
Is there a way to control from VB6 a Firefox instance?
There's a corporate application. This application has a form, I need to catch the Firefox Session, then execute a script in Javascript that injects a function that makes a Post to that session.
I could do it in IE, but I was wondering if there was a way to do it for FireFox.
...
I'm writing a Firefox extension that uses lots of XMLHttpRequests, following the pattern of the sample code at MDC. Most of the time this works perfectly, but some of the requests are causing the following message to appear in the console:
Http channel implementation doesn't support nsIUploadChannel2. An extension has sup...
Mozilla's documentation from elementFromPoint explains that the coordinates are not in physical pixels, but "CSS pixels". Exactly what are CSS pixels? I was under the impression that a pixel in CSS was the same as the physical pixel.
If this is not the case, how does one convert between physical and CSS pixels?
...
I have HTML code which calls a javascript function from a form, using:
<form name="f" id="f" ...>
<input name="myField" onchange="doFunct(f.myField.value,f.yourField);" />
<input name="yourfield" onchange="doFunct(f.yourField.value,f.anotherField);" />
...
In the javascript code:
function doFunct(field,dest){
// do something ...
When you execute following example using Firefox 3:
<html>
<head>
<script language="javascript" type="text/javascript">
<!--
function openWindow(){
var w = window.open('', 'otherWin', 'width=600,height=600');
w.document.write(document.getElementsByTagName("html")[0].innerHTML);
w.document.close();
reportLinks(w....
I need to add informational popups to several menu items, and Im using jQuery .hover to do so. However this only works in Firefox and does not work in Safari, Chrome or Opera.
var Main = function() {
//other functions...
function _setPopups() {
$(".dt_event_title a").hover(
function(){
$(".i...
I love how the following animates in Safari, but hate how it does in firefox (click an event name, then click "previous post" or "next post" at the bottom of the page). Is there a way to "smooth out" the animation like it does it in Safari?
EDIT:
In firefox there is kind of a "flash of white" as the two images cross each other. It looks...
I want to inject a css file located on the skin folder in a browser page.
It is located on chrome://orkutmanager/skin/om.css, accessing manually show the file contents correctly.
I've tried this, but it's not working... What am I missing, or is it impossible?
...