A free, open source and cross-platform web browser created by Mozilla.
0
votes
1answer
29 views
Is it possible to check installed addons in firefox using a webpage (php/javascript)? [duplicate]
I need to check, whether my Firefox addon is installed or not when users log into my website. If addon is not installed then users will see an alert to install the addon and if addon is already ...
1
vote
1answer
19 views
Audio tag not working in firefox add-on
I have a FireFox extension where I am trying to play (and loop) an audio file when a specific page loads. I am embedding an audio tag like so:
start.js
window.onload = function() {
...
0
votes
0answers
14 views
jPlayer - Flash fallback isn't ready when page loads
My jPlayer code calls jPlayer("setMedia", {mp3: url}) on the jPlayer element fairly soon after I initialize it. This works fine in Safari and Chrome, but in Firefox, which falls back to the Flash ...
1
vote
1answer
28 views
context.getImageData() operation is insecure
I want to realize a simple greyscale filter for HTML5 canvas, but I canot grab the Image data as pixels. I get security warnings from FF and Chrome. Finally the filter does not make the image grey.
...
4
votes
2answers
48 views
Div position issue in Firefox
I am working on this code and this code working fine in Chrome but not in Firefox
Here is code
<html lang="en-US">
<body><table style="width: 100%;">
<tbody><tr>
...
0
votes
0answers
13 views
jQuery UI Draggable and overflow: auto in firefox
I have a div of fixed dimensions and draggable. Within it there is an image which could have greater dimensions than its parent div. So if images dimensions are greater, scollbars are added. This ...
0
votes
0answers
14 views
Width of my drop down menu is expanding the length of the whole menu in Firefox
I am trying to create a simple drop down navigation menu but Firefox is automatically expanding the width of the sub menu to its parents width. The reason im using position relative and not some ...
1
vote
1answer
36 views
YUI 3.10 Simple scroll animation
We moved our project to latest YUI version and some problem which should be trivial became night mare.
Goal: Click on 'back to top' element need to move our users to top element
Animated Scroll ...
0
votes
1answer
18 views
Custom Radio Buttons Won't Display in Firefox
I'm using Screw Default Buttons (http://www.screwdefaultbuttons.com/) to customize the radio buttons and checkboxes in a client project (https://artofgivingfl.com/make-gift).
I've tried everything I ...
0
votes
4answers
41 views
FireFox - Blinky Hover Divs
So in FireFox / IE for some reason, my hover keeps blinking, I'm not quite sure why. Is it just better to do my hovers in javascript or is there an easier fix in CSS? Here's a JSFiddle to show what i ...
-2
votes
1answer
25 views
create app to display website [closed]
I am looking for a tool to create an app out of a website.
Basically I want to provide two files: .exe (win) and .app (mac), which both either look for an appropriate browser software on the clients ...
0
votes
0answers
20 views
Automatic autorestart Firefox on close [migrated]
I want firefox to restart automatically when I close it. I found this script
#! /bin/sh
while [ true ]; do
firefox
done
and I put a file with that script in the /etc/init.d folder. Firefox ...
2
votes
1answer
73 views
Cannot see javascript object properties in Firefox
When I run this function in Firefox (Firefox 20, Linux) I just see {};{}:
es.addEventListener('error', ...
0
votes
0answers
11 views
Anchor link to Firefox about:config?
As the single way I found to uninstall a webapp is to go to the about:apps page, I wanted to code the following:
<p>To uninstall the webapp, please go to
<a ...
-1
votes
1answer
39 views
Stylesheet doesn't load in Firfefox/IE/Opera, works fine in Chrome, Mobile Safari, Safari (desktop) [closed]
The Page I've designed works perfectly in Chrome and Safari but doesn't work in other browsers
Link: http://intelsystems.in/testing/
1
vote
1answer
36 views
media queries not working on firefox
I have been working with this new technology for me (Responsive Design) and i hate the problems which i don't know the answer, i get frustated :/
Here is my code :
http://jsbin.com/ejadej/1
With the ...
0
votes
0answers
16 views
link width auto not working in FireFox
I'm creating a web site but have a problem with the images thumbs links in FireFox. in chrome and IE it works fine.
the page: http://www.oferamirphotography.com/life/
in FireFox the thumbs link ...
0
votes
0answers
12 views
Mobile Browser won't use 100% of width of screen when viewing vertically.
I have been testing my site on mobile browsers and for some reason when viewing the page horizontally Android and Firefox use only 75% of the width of the screen; but when I turn my phone vertically ...
0
votes
1answer
28 views
SVG <use> scales but <image> not
I want to embed some SVG into SVG.
Therefor I want to use the <image> element since I want to keep my SVG separated.
But when I include my SVG like that:
<image ...
0
votes
2answers
34 views
how to access activex from firefox
i had developed an activex control to communicate web browser with the local machine . it is working fine for me with Internet Explorer . how can i communicate my activex in firefox and chrome.
will ...
-1
votes
0answers
31 views
Grease monkey not installing on firefox 21 on android [closed]
I can't find anyone with this problem of not being able to install greasemonkey since installing Firefox version 21 on my android. My ultimate goal is to combine my fitness pal logging with weight ...
-3
votes
0answers
18 views
Firefox HTML / JQuery form issue [closed]
I have a form (link below) where you have to click multiple times on the radio select option for it to become selected. This is only happening in firefox.
I have tried :
Removing the styling
...
0
votes
0answers
21 views
How to get these sprites animations to work in Firefox
Hi I'm struggling to work out how to get these sprite animations for the stars to work properly in Firefox, it currently seems to be working fine in Chrome and Safari.
var chips = true;
function ...
0
votes
1answer
28 views
Caption element and 100% width on nested tables
I'm using caption on a table that includes children table elements.
Within the caption element I've got a div incl. two links that should be on the right edge of the uppermost table.
But as soon as ...
1
vote
2answers
54 views
Ext JS bug in WebKit Browsers
I encountered a problem of declaring a variable "location" for extjs store where it runs without any problem in IE but browsers that has webkit like FireFox, Chrome..etc trying to redirected to ...
0
votes
2answers
49 views
Twitter Bootstrap: Getting Form Inputs and Buttons to be same the height in Chrome and Firefox
Using Twitter Bootstrap 2.3.2 I have a input-append form:
<form class="bs-docs-example">
<div class="input-append">
<input type="text" id="form-input" class="span2">
...
0
votes
0answers
30 views
Can't load audio - “Content-Type” of “audio/mpeg” is not supported. - Firefox
If anyone could help me out on this error happening in production that would be great.
I've recently moved over the site to ec2 from Heroku.
In firefox the audio now refuses to load.
...
1
vote
1answer
42 views
Is there an equivalent to jQuery.on for Firefox addons?
Is there anything equivalent to jQuery's .on functionality, for chrome-level javascript? I want a Firefox addon to add events on a large number of elements in a document in chrome context. Looping and ...
1
vote
1answer
31 views
Pass array to shader
I create my array this.kernel: it hast 48 elements and I want to pass it to my fragment shader.
When i call
gl.uniform3fv(gl.getUniformLocation(this.program, "kernel"), 16, this.kernel);
kernel ...
0
votes
0answers
52 views
How to close window in Firefox 21
I've got a "Close Button" in a web game. And if the user clicks on it the browser-window should close. But it doesn't work on Firefox version 21. In other browsers like chrome, IE work this:
...
0
votes
0answers
33 views
How to change style of firefox tab group window (userchrome.css)?
I want to change the style of some elements in the Tab groups window of Firefox by making changes to the userChrome.css. Specifically I want to change the background color of the tab-groups.
I found ...
0
votes
1answer
53 views
stylesheet wont load in Firefox , IE and Opera
My wordpress website won't load correctly in FF , IE and Opera But in chrome it's OK.
I have looked at these two questions but they didn't helped:
IE/Firefox/Opera not picking up stylesheet - Webkit ...
0
votes
1answer
33 views
Javascript function does not call on firefox for android
In my html page, after loading the page, i dynamically add a piece of code containing this anchor
<a id="btnCall" class="btn_call_infobox" href="javascript:booking.userCall(189, ...
0
votes
0answers
16 views
Opera & Firefox: input type submit/button in box-align:center; box-pack:center;
CSS
<style>
div { width:350px; height:100px; border:1px solid black; display:box;display:box; box-pack:center; box-align:center; display:-webkit-box; -webkit-box-pack:center; ...
1
vote
1answer
60 views
List(li) bullets does not align consistently across browsers
Here's the fiddle (http://jsfiddle.net/PZgn8/8/). Note that it looks different rendered in Chrome 27 and Firefox 21. I think it's a bug with Firefox, but Firefox gives me the outcome I want.
<ul ...
1
vote
1answer
17 views
css paddings and borders behave differently in firefox
It looks the way I like in chrome and safari. but it looks very strange in firefox. It appears to be cut off.I wonder if there is better way of archiving the same results as in chrome and safari for ...
3
votes
1answer
36 views
strange unterminated string literal error with Firefox [duplicate]
I have seen similar issues to the below but I've thoroughly checked the following problem. I receive an "Unterminated string literal" error in Firefox's console.
I have an HTML page as follows:
...
0
votes
3answers
34 views
window.open Middle-Click in Firefox
I need to use JavaScript to trigger a page to open in a new window when clicking the link. I've noticed that when you middle-click on the link in Firefox, you would open the current page in a new ...
-1
votes
1answer
14 views
Hide information in window.screen [closed]
Is it possible to instruct Firefox to hide the information contained in window.screen?
According to this paper [1], it can be used for tracking purposes.
Thank you.
[1] ...
1
vote
0answers
77 views
Firefox 21 and Ember.js not working
After Firefox auto-upgraded to v21, it does not allow the ember.js elements in our app to function. We get this error in the Firefox console when the JavaScript tries to load the ember template:
...
0
votes
1answer
62 views
How to get full directory path of the file on browse in Firefox and IE using javascript?
I have a javascript interface in which I have a browse button to find and attach a file and then upload it to a different directory. Problem is that once I attach a file i don't get full directory ...
0
votes
1answer
25 views
Save file which is opened using iFrame
I am opening the contents using iFrame as a pdf file. When I click the link download. In IE browser, it is asking me to save or open. But in Firefox browser, it is straight away opening the pdf in a ...
3
votes
0answers
38 views
Firefox-addon-sdk: launching pageMod when pressing a button?
I am making a Firefox add on using toolbar button by Erik Vold and I would like to know how to launch and stop pageMod when an user press a button in the toolbar. Is that even possible ?
I tried ...
0
votes
0answers
13 views
Force Firefox to use HTTPS for every connection [migrated]
Is there an addon to force good 'ol firefox to append an 's' at the end of the http on the url bar, so all connections could be https?
I know not every server has SSL, but in case they do, is there a ...
-2
votes
2answers
87 views
Javascript : break if a variable is 'undefined'
I spent four hours debugging some javascript code because of an 'undefined' variable :(
is there an option or a feature to break the browser whenever it tries to use an 'undefined' variable, I could ...
0
votes
2answers
32 views
No Resolution selection option in Twist project using Sahi
I am using Twist for Test Automation. I have created a Twist project by following combination:
Driver: Sahi (for web apps)
Language: Java
Browser: Firefox
I have created Scenario. During recording ...
2
votes
1answer
47 views
Why “text-align: right” doesn't work on empty contenteditable element in Firefox?
Consider the following: (Live Demo)
HTML:
<div contenteditable></div>
CSS:
div {
text-align: right;
}
When you click the div in Firefox, the cursor is located at the left (looks ...
0
votes
0answers
22 views
PlotBackground color rendered differently in IE and FF
I am creating a few charts using Highcharts.
THe plotbackground color I use is #f0f0f0.
However instead of the light gray background that I am expecting to see. In FF I notice a pinkish shade to the ...
0
votes
0answers
4 views
Whitelist a site for geolocation in Firefox
I have a javascript code that keeps sending the gelocation data asynchronously to the server every 2 seconds.
This is roughly the code I use
navigator.geolocation.getCurrentPosition (sendPos) ...
0
votes
0answers
26 views
callnamed pipe returns true but could not find any data in out para meter
i am trying to build a firefox extension which can communicate to an exe which is in waiting mode. but my problem is that
"callnamed pipe returns true but could not find any data in out parameter"
...

