Hi All,
I followed this tutorial to start working with PHP and netbeans
http://blogs.sun.com/netbeansphp/entry/ubuntu_php_netbeans
and as I have created a .php file which has
<?php
phpinfo();
?>
as the only content, but what I refresh the page it says (in FF)
you have chosen to open
which is a : PHTML file
from : http://12...
So firefox doesn't want to load my fonts, the path is right I also so the request in Firebug, but it won't render it. On other browser it works perfect, here is my code:
@font-face {
font-family: 'Gill Sans';
src: url('/fonts/gillsansstd-webfont.eot');
src: local('☺'), url('/fonts/gillsansstd-webfont.woff') format('woff'), url('/fonts/g...
Is there a way to override the use of maxVersion in firefox extensions so if a new firefox update comes out the extension will still work? I think this can be done by setting a new bool in about:config but I am trying to do it from the extension itself.
...
I downloaded this firefox sample extension from mozilla.org, I modified the file install.rdf and changed maxVersion value to 3.6.10 (also tried 3.6.*, 100 and *) and I added a new sting with name "hello world" and the value is the path where the folder of the sample extension is to HKCU (also tryed HKLM)/Software/Mozilla/Firefox/Extensio...
I am new to Mozilla extensions and i have been trying to build the "hello world" following this tutorial https://developer.mozilla.org/en/Building_an_Extension but unfortunately its not showing anything on the right of my status bar when i start Firefox with my development profile. I have checked everything many times and not found any m...
As you know Firefox remembers the basic authentication info for a user once the user logs in.
How do I remove this programmatically using javascript?
Scenario:
User logs in
An ajax request using basic authentication is sent to the server
If successful, firefox then remembers authentication info
If user logs out, firefox still remembe...
Hello,
I have a site that is fully functioning in Chrome/Safari and heavily relied on SQLite to store/access data. However, when testing in Firefox, it errors on the first call, openDatabase(). This is my fairly standard openDB function:
function openDB(){
try {
if (!window.openDatabase) {
alert('not supported');
} else...
I'm trying to use the tabindex text input attribute to allow users to tab between fields on this page: https://seatgeek.com/login/. This works perfectly in all browsers (event IE!) except for Firefox. I'm using Firefox 3.6.10.
...
I'm working on an app in ASP.NET MVC 2, and the output of the table looks the way I'd expect in Chrome and IE8:
but this is how it looks in FF 3.6.8 it looks like this:
I'm using javascript/jquery to add rows, this is the code:
function onAddItem() {
itemCount = itemCount + 1;
var rowString = "<tr id=" + it...
I just came to know that Forefox no longer support XPCOM component for creating extensions ..
I want to create an extension which will handle my protocol which will collect information from different sources via my NPRUNTIME plugin and render webpage accordingly ..
in past I used to create protocol handler by implementing nsIProtocolHand...
The web site was built on asp.net platform. Ajax enabled. It works very well on
ie or chrome, but it does not work on mozilla...?
You see arrows work great but the numbers does not appear?
how can i fix..
http://dexiab-2.hosting.parking.ru//Default.aspx#world the link to see the detail..
...
I have written this code for Firefox:
<html><head><title>No</title>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
</head>
<body>
<form action="javascript:void(alert('Yes'));">
<input type="submit" value="Submit">
</form>
<script>$($('form').submit())</script></body></html>
It correctly displays the alert box.
However,...
Hi,
I'd like to open two or more firefox windows (version 3.6.10) and have distinct sessions in each.
For instance:
I open window 1, and go to gmail.com and sign in.
I open window 2, and go to gmail.com - I'm not currently signed in with this window. So I can sign into a different account.
How can I do this?
...
I'm using Firefox 3.6 and I think that there may be a compatibility issue with the Autoit script using #include FF.au3 and Mozrepl to close all of Firefox's open tabs with the addon TMP-TabMixPlus 0.3.8.4 installed. Below is the script I'm using and I would like to add something like this _FFTabClose("all", "index") I can't make it work!...
Not as evil as it sounds!
This is for a corporate deployment tool. One of the things they want to do is to manage browser add-ons & plugins. UI wise, the client considers it inappropriate for a dialog to pop-up.
What I need to do is copy out xpi files to the destination systems, but how do I trigger an install.
install-global-exten...
I have an issue that only seems to affect Safari and Chrome (aka WebKit). I have an overlay that fills the whole screen, and two table rows that I would like to appear on top of the overlay. Everything else on the page should be displayed below the overlay.
The problem is that Safari only displays one of the table rows on top. Firefox c...
I have the following simple javascript code, which handles the Return Key, I don't want to submit the form when the return key is pressed in the textbox.
All this works fine, but in Firefox, if i show an alert message, then it stops working and the form starts getting submitted, whereas the exact code without alert message works fine an...
I have the following simple XSL style sheet:
<?xml version="1.0" encoding="windows-1252"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output encoding="utf-8" method="html" />
<xsl:template match="/">
<xsl:text disable-output-escaping="yes">
<...
I am trying to use Webdriver to test a location aware website and would like to programatically (using WebDriver API call) click on the "Share Location" button that pops up when I click on a link to the location aware part of the web application.
It is a browser prompt and does not seem to be a DOM element or javascript popup element.
...
Hi
I have problem need to solved with Regex
If i am using Firefox or IE8 javascript will generate this code which is what I really want.
<div style="visibility: hidden;" id="wizardId1">1001</div><div style="visibility: hidden;" id="wizardId2">1002</div>
However with IE7 it will generate diferently to be
<DIV id=wizardId1 style="VI...