Hello, Im making firefox extension. One function stores value in every tab, to use it later by other function.
function setValue(value) {
var attr = gBrowser.document.createAttribute("value");
attr.value = value;
gBrowser.document.attributes.setNamedItem(attr);
};
function getValue() {
var attr = gBrowser.document.att...
I got Selenium IDE, followed this post, got to
python test_default_server.py
and it complains Firefox is not in my path:
Please add the directory containing ''firefox.exe'' to your PATH environment
variable, or explicitly specify a path to Firefox 3 like this:
*firefox3c:\blah\firefox.exe
I could change my PATH environment variable...
I searching the Internet for an Page or an Book that collects the characteristics (Bugs/Features) of common Browsers. I get a lot of Information from several sites.. but is there some place for webdesigner that focusses on that issue?
At the moment i am using Grails if that is an needed factor to answer my question.
...
Does anyone know of an extension for Firefox, or a script or some other mechanism, that can monitor one or more local files. Firefox would auto-refresh or otherwise updated its canvas when it detected a change (of timestamp) in the files(s).
For editing CSS, it would be ideal if just the CSS could be reloaded, rather than a full HTML re...
I have the book "Creating Applications with Mozilla", though I haven't read it yet. According to the book's web site at http://books.mozdev.org/, It is "very out of date."
How out of date is it? Is it a decent reference, but doesn't cover new APIs, or is the stuff it covers things you shouldn't be using anymore? Is it decent as a XUL/XB...
I have a Debian server with a standart Apache and a MySQL.
I will host there my xbap app.
I want to create a application that access that MySQL and can be seen in my intranet in firefox.
It's possible? How? And about the trust not granted message?
Suggestions will be great.
Thankz!
...
If you look on this page here in Firefox (I'm on 3.5.2 on a Mac) and scroll up and down, you should see random lines show up in the table. They are horizontal lines that almost look like underlines that go all the way across the table. Sometimes they are thin and black, sometimes they are thick and blue. If you don't see them, scroll u...
I m, on a daily basis creating web pages. My preferred development screen resolution is: 1600x1200 but what is yours?
And do you use any other plug-ins?
I use window re sizer 1.0 for Firefox. But are there better options?
...
Does anyone know a way to get Firefox to crop the corners if the border radius of an image is set? It's containing element will work fine but I get ugly corners sticking out.
Any way to fix this without setting the image as a background image or processing it before I put it on my site?
...
Currently I'm trying to include Dojo from either one of these two CDN (Content Delivery Network) sources:
1) o.aolcdn.com/dojo/1.3.2/dojo/dojo.xd.js
2) ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/dojo.xd.js
It seems like some times during the day, Firefox 3.5 refuses to load the dojo library.
I see errors in Firebug console like "...
Hi,
I'm working with a WordPress plugin. It adds a flash player to the output page. All works great on IE, Safari, Chrome.
In FF 3.0.13, I can see via Firebug that the object is there, but it is grayed out.
Display == inline
Visibility == visible
So why isn't it visible? Ideas much appreciated.
Page: http://podcasts.pardesusa.org/...
Hi!
I'm having a problem with the padding in my form on my website.
If I've set a height/width to a form element and then adds a padding to it. In all browsers I've tried, except Firefox, the padding is added to the height/width.
If I have a input with 200 in width and 20px in height. and padding at 5 (all ways), the sum and total widt...
Could you introduce me good referrences or web pages of your recommended development of Firefox Addon
...
How to get FullName with path info in FireFox using asp.net upload control?
With IE, I can get the FullName of a file with the full path info using asp.net upload control:
<asp:FileUpload ID="FileUpload1" runat="server" />
In IE, the FileUpload1.PostedFile.FileName is E:\iProject\Demo1\abc.jpg
But in FireFox, the FileUpload1.Post...
Hi
Is there any way to make windowless .wmv videos on firefox. Does windows media player plugin support windowlessVideo mode in firefox and if it does please tell me which version should i use
...
how to disable firefox maximize button for popup window?
...
When i use image in my html page using background property .IT loks fine in IE but looks blur in firefox. Wat could be the possible solution.
Thanks,
...
I have some JavaScript code that works in IE containing the following:
myElement.innerText = "foo";
However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox equivalent? Or is there a more generic, cross browser property that can be used?
...
function getSelectedRadio(seeker_provider) {
var sign;
for (var i=0; i<seeker_provider.length; i++) {
if (seeker_provider[i].checked)
{
sign=i;
}
}
if(sign==0)
{
alert(sign);
window.location='updatcty.php';
}
if(sign==1)
{
alert(sign);
window.location='../registration_provider.php?proid=2...
Is it possible to hide the mouse cursor in a web browser?
I've done this in Flash for a touch screen application, where a mouse cursor is distracting and unneeded. This time it's for a display screen that is non-interactive, so a mouse cursor is not needed.
My gut feeling is there's no easy way to achieve this in the web browser, only ...