firefox

How Can I Compile Firefox and Include a Few Extensions?

Hello, I need to be able to compile firefox and bundle it with a few extensions so when people download it the extensions are already there. I was wondering if anyone can point me to some documentation. I have been searching for hours and can't seem to find anything like that. Thanks, Sebastian ...

How To Prevent Tab Hell With Visual Studio And FireFox Debugging?

How do I keep VS from opening a new tab in Firefox every time I hit F5 to debug a web application? I would really like it to re-use the same tab. ...

A Firefox tool that shows object and element structure on hover?

on any element in the webpage. I need to look at what the element and children elements are. For e.g. ...

Browser add-on to find a download's origin

Back in the earlier days of the internet I remember that in certain browsers, every time you downloaded an image or a file, the URL of where that file was downloaded from would be written into that file's properties (I guess the summary tab?). I think Netscape v2 did this if I remember correctly. I really miss that kind of functionality...

IE7 and the CSS table-cell property

So I just love it when my application is working great in Firefox, but then I open it in IE and... Nope, please try again. The issue I'm having is that I'm setting a CSS display property to either none or table-cell with JavaScript. I was initially using display: block, but Firefox was rendering it weird without the table-cell property...

HTML Table columns height; Works in Firefox not in IE

I have some HTML that displays fine on FireFox3/Opera/Safari but not with IE7. The snippet is as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head></head> <body bgcolor="#AA5566" > <table width...

Firefox add-on tools for checking JavaScript syntax?

Not sure if there is any Firefox add-on tool for checking JavaScript syntax, var declaration, or even pre-compiling available? I find out is very difficult to debug JavaScript in a web html page. I have to add some script there. When the scripts get very big or long, it stops working. Basically, there must be some bugs. It is very frus...

webservice.htc, moz-behaviors and Firefox 3.

Whilst trying to get our app working in Firefox (I'm a big proponent of X-Browser support but our lead dev is resisting me saying IE is good enough). So I'm doing a little side project to see how much work it is to convert. I've hit a problem straight away. The main.aspx page binds to a webservice using the IE only method of adding beh...

Ajax requests from xul not working in firefox 2

I'm working on a firefox extension and have been developing it in firefox 3, i went to test it on firefox 2 and for some reason none of my HTTP requests are firing. The format of the requests are below (using prototype): theResponse = function(response){ //some code } new Ajax.Request(url,{ method:'get', parameters : {url: currentURL},...

Using AppleScript to grab the URL from the frontmost window in web browsers: The definitive list

I built a widget that grabs the URL from the frontmost window in Safari, then allows you to shorten it using the tr.im API. Works sweet as. I want to make this more flexible, so am investigating how to grab an URL from other browsers. Here's the AppleScript that works in Safari: tell application "Safari" return URL of front documen...

How do I generate an SSL certicate?/ How to access a page with invalid certicate in FF3?

I am not able to access localhost https pages in firefox3. It gave the error 'Can't connect securely because the SSL protocol has been disabled. (Error code: ssl_error_ssl_disabled)' I enabled all the SSL2 related preferences through about:config and the error changed to 'Data Transfer Error The browser connected successfully, but t...

Making my ASP.NET website compatible with Firefox?

Hi, i have an ASP.net web site ( http://www.erate.co.za ) version 2.0. When someone open my website in Firefox everything looks different. Why is that and how can i make it compatible? Please help! Etienne ...

Disappearing CSS table cell borders in Gecko-based browsers

I have a very specific html table construct that seems to reveal a Gecko bug. Here's a distilled version of the problem. Observe the following table in a gecko-based browser (FF, for example): (you'll have to copy and paste this into a new file) <style> table.example{ border-collapse:collapse; } table.example td { border:1px ...

Is there a way to customize Firebug's keyboard shortcuts?

Is there a way to customize Firebug's keyboard shortcuts? I love being able to step through javascript code using the Firebug console, but it looks like I'm limited to either using the default keyboard shortcuts for stepping over/into/out of code or using the mouse to click the appropriate button. Am I missing something? Is there ...

Retrieving the full path (server-side) of a file uploaded using Firefox?

When I am using a form containing <input id="myFile" type="file" runat="server" /> to upload a file, my server-side code only sees the filename without the full path when using Firefox, while it works just fine in IE. Is it possible to retrieve the full file path server-side in this case? ...

Javascript window.open strange behavior in Firefox

Hi, I have a few links that should all open in the same window or tab. To accomplish this I've given the window a name like in this example code: <a href="#" onClick='window.open("http://somesite.com", "mywindow", "");'>link 1</a> <a href="#" onClick='window.open("http://someothersite.com", "mywindow", "");'>link 2</a> This works OK ...

JavaScript: Ci is not defined

I just spent half an one our to find out what caused the Error-Message "Ci is not defined" in my JavaScript code. I finally found the reason: It should be (jQuery): $("asd").bla(); It was: ("asd").bla(); (Dollar sign gone missing) Now after having fixed the problem I'd like to understand the message itself: What does Firefox mean...

Firefox 3 doesn't allow 'Back' to a form if the form result in a redirect last time.

Greetings, Here's the problem I'm having. I have a page which redirects directly to another page the first time it is visited. If the user clicks 'back', though, the page behaves differently and instead displays content (tracking session IDs to make sure this is the second time the page has been loaded). To do this, I tell the user's...

Pulling in Dynamiclly Generated (not a static file) CSS in FF?

Is there any way of pulling in a CSS stylesheet into FireFox 2 or 3 that is not a static file? Bellow is the code we are using to pull in a stylesheet dynamically generated by a CGI script. <link rel="stylesheet" href="/cgi-bin/Xebra?ShowIt&s=LH4X6I2l4fSYwf4pky4k&shw=795430-0&path=customer/DEMO/demo1.css" type="text/css"> /cgi-bin...

How To Create a Quick Minimal Firefox Extension?

What the minimum basic setup required to begin developing a Firefox extension? ...