firefox

Problem in loading Iframe in FireFox!

Hello all, I'm trying to load an aspx page using Iframe in VB.net. I'm trying to do it(setting the source of Iframe) with the help of Ext(JavaScript). aspx code: < div id="container" > < iframe id="pane" name="pane" src="Empty.aspx" frameborder="0" >< /iframe> < /div > Javascript code: Pane = function() { var pane; return {...

turning on Greasemonkey live editing

On Firefox, I click Tools, Addons, Extensions, Greasemonkey, Options, select my user script, click Edit, change the source code, click save, reload one of the included pages, but the script is the unchanged version. On User Scripts, logged in, I click my username, Script Management, my script's name, Admin, Edit Code Online, change the ...

a simple regexp

The regexp has to remove ,id or id, in read and unread. GM_setValue('unreadids', unreadids.replace(new RegExp('('+id+',)|(,'+id+')', 'i'),'')); GM_setValue('readids', readids.replace(new RegExp('('+id+',)|(,'+id+')', 'i'), '')); In RX Toolkit, (,1|1,) for a test, ,1 or ,1 is replaced with nothing. In real life... http://userscripts....

How do I use the Firefox ping attribute?

Firefox apparently supports a PING attribute for HREFs. How do I implement code to receive the ping? ...

Running GUI application in the Windows service mode

I'm writing a server running as a Windows service that by request invokes Firefox to generate a pdf snapshot of a webpage. I know it is a bad idea to run a GUI program in service mode, but the server nature of my program restricts from running it in the user mode. Running a user-level 'proxy' also is not an option, since there might be...

How to edit a FF add on?

Theres a firefox add on i would like to edit. I never made a plugin before and have looked at one before. Is there a tutorial or something on how to -edit- one? I do not know how to test the add on and ext ...

Problem with javascript in firefox when moving google ads

hi. i have a website with google ads on it. i would like to make it load faster. thus i moved all the google scripts to the bottom of the page. i also have a placeholder at the location where the ad(s) should be displayed and other divs that (initially) get the ads. finally (in window.onload) i'm moving the ads that have just be fetched...

CloseHandler<Window> and Window.ClosingHandler() working differently in IE

It seems that CloseHandler and Window.ClosingHandler() are not working or are not triggering the events in the same way under IE as opposed to Firefox. Window.addWindowClosingHandler(new Window.ClosingHandler() { @Override public void onWindowClosing(ClosingEvent event) { ...

Firefox WebSockets

I've read somewhere that the trunk version of Firefox already had a WebSocket implementation. Nevertheless, I've just tried the 3.7a4pre without success. It still gives me the old "WebSocket is not defined" error message. Am I confused with WebWorkers? Using a flash-based WebSocket implementation is not an option. Please advice. ...

Neither IE or Firefox respects the control values that are output

I'm writing a survey designer asp.net mvc. It has buttons to move questions up and down. The buttons post the whole form back and the affected questions are swapped on the server. When the form returns the only thing that is changed are the values for each survey question. Both firefox and IE seem to ignore this change. Nothing is...

HTML5 elements working in Chrome but not Safari or Firefox?

Hi, I'm using the HTML5 elements and in a project i'm working on (see it here) and the css seems to be working fine in Chrome. However, it doesn't appear to be working in Safari or Firefox (I haven't tested IE, but I'd imagine it's the same), and the page layout is all over the place. Any ideas why this may be? I know Firefox and S...

<UL> displaying incorrectly - works fine in all browsers except Firefox 2 (screenshots included)

Hey folks OK, here's a screenshot of what it's SUPPOSED to look like: And here's a screenshot of how it looks in Firefox 2 (on both Mac & PC)... Every other browser gets it right (even IE6?!). The source code is an Unordered List using Sprites with :hover effects. Here is some code for you: The HTML: <div id="votes"> ...

Firefox Extension needs to get cookie from PHP redirected external page.

I am writing a firefox extension that interacts with a JSON server interface. I receive a url to the server which then redirects to the client site that provides the cookie. I need to be able to set this cookie in the users browser without physically loading it in the browser. Is this possible through an AJAX call? I tried using a hi...

How to get GWT console/development mode to generate css errors?

Dear all, I noticed that when running GWT, it doesn't alert me of css errors such as missing/misspelled classes. Even the error console of Firefox doesn't prompt anything. I'm skinning my web app pretty intensively, need a way to show up the css errors, any suggestion that I can try? Thanks in advance. ...

Make the file download manager window the front window in Firefox/Safari

If Safari/Firefox have already downloaded files then they keep a download manager window open. When the user downloads a new file from my site, is there any way to force that download manager window to the front of all windows? ...

Mouse bugginess - SWFObject, Firefox 3 for Mac, and Flash

I'm pulling my hair out over a problem I'm encountering on Firefox 3.5 & 3.6 on OS X. I'm using SWFobject to embed an AmMap of the US, which has rollover tooltips for various states. The rollovers are working fine in every other browser I've tested, but they're very buggy on FF for Mac--most of the time they don't show up at all, but i...

[Ffx extension] File download

Is there any way I can make Firefox call a JS function in my extension whenever it completes a download (passing the path of the downloaded file)? Thanks for any help. ...

Flash movies in inactive browser tabs pause or don't execute in real time

I'm noticing some unexpected behavior. Some time in the last few months, a change in either Firefox, the Flash player, or both, has made it so that Flash movies that are in inactive browser tabs no longer execute in real time. They appear to still execute, but only in bursts, and not in a predictable way. This is a problem because I d...

How can I get Firefox to update background-color on a:hover *before* a javascript routine is run?

I'm having a Firefox-specific issue with a script I wrote to create 3d layouts. The correct behavior is that the script pulls the background-color from an element and then uses that color to draw on the canvas. When a user mouses over a link and the background-color changes to the :hover rule, the color being drawn changes on the canva...

how to get firefox address bar url for python (pywin32)

hi; i need grab to firefox address bar. how to get address bar url for python ? (i need second part other browsers chrome and safari grabbing address bar but firefox is urgently). Thanks. ...