I want to write a Firefox addon that could get the content of the address bar in real time, for example this addon will change every "a" to "A" just as the user pressed "a".
The problem is that I couldn't find any way to do that in Javascript, is there a way to do it (getting the address bar content in real time)?
...
How to detect when a page is loaded (in any tab) with a firefox extension (automatically, no start-button or anything) (and display an alert message for example) ?
...
Hi,
I am having the strangest issue with a site i am developing. On the homepage i have a flash slide show which displays fine in IE. However it does not appear in Firefox but instead leaves a white space.
I am using SWFObject to display the flash. I knows its at least firing as the holding image is removed. However if i right click o...
I'm writing my first bit of jQuery and I'm having a problem with jQuery.get(). I'm calling this;
$.get(url, updateList);
where updateList is defined like so;
function updateList(data)
{
if (data)
{
$('#contentlist').html(data);
}
else
{
$('#contentlist').html('<li><a href="#" id="synclink">Nothi...
I'm writing a rudimentary screen scraper tool as an FF add-on (using DOM and xpaths). Currently, it runs fine. However, it also runs very slowly, as Firefox takes some time to request and download all the non-textual elements on each page (simply writing a separate application that parses the raw HTML is not feasible as some of the pages...
Hi all,
I have some javascript which calls some php functions to track webstats (piwik.org)
Everything works fine on http sites, from every browser it is all tracked
I have one site that is https - it will track visits from ie, but not from Firefox or Chrome
Does anyone know of anything I need to do or set or use to make it work on ...
Okay, I did a crappy job of describing the issue in my previous post. I think the discussion got sidetracked from the core issue - so I'm going to try again. Mea Culpa to Elzo Valugi about the aforementioned thread.
I have an XML file:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="wtf.xsl"?>
<Paragraphs...
I'm working on what is basically a small utility that displays a piece of sourcecode in a table which has two columns, one for line numbers and one for the actual source.
I found that you can prevent the appearance of text being selected with the following CSS:
table th {
-moz-user-select: none;
-webkit-user-select: none;
}
Unfortu...
I have a web page using css and it's run ok in firefox 3.5 but not in firefox 3.1 and chrome. Anyone have an ideal for this problem, please show me the way to fix this. Is there any way to hack css in firefox 3.1 and firefox 3.5
...
Hi,
Is it possible to have a nested ajax form in cakephp and firefox ?
i.e.
$ajax->form(form1...)
table
row
$ajax->form(childForm_rowId)
$form->end(childForm_rowId)
endrow
end table
$form->end
I found this works in IE7, but not in Firefox 3.5.1
Firefox will omit the childForm declaration, so the child ...
I have a the following in my header.html:
<META HTTP-EQUIV="refresh" CONTENT="<%= session.getMaxInactiveInterval() %>; URL=/nmt/extranet/asp/error.jsp" />
and the following in my web.xml
<session-config>
<session-timeout>60</session-timeout>
After an hour the session times out and redirects me to the error.jsp in IE and Opera b...
Hello:
I recently built a HTML and Javascript web application that opens specific folders throughout a network of accessible drives. This app works well when it is rendered in IE; however, the folder paths do not work in FireFox.
The following is an example of the path format that I am using to open the folders in IE:
{
window.op...
If javascript modifies DOM in page A, user navigates to page B and then hits back button to get back to the page A. All modifications to DOM of page A are lost and user is presented with version that was originally retrieved from the server.
It works that way on stackoverflow, reddit and many other popular websites. (try to add test com...
I have the following Rails partial...
<% remote_form_for :ride, :url => {:action => "create"}, :html => {:id => form_name} do |f| %>
<%= f.error_messages %>
<td>
<%= f.text_field :name %>
</td>
<td>
<%= f.text_field :land %>
</td>
<td>
<%= f.text_field :height_restriction %>
</td>
<td colspan="2">
<%= sub...
My problem is: in firefox i got no response. in ie it worked fine.
I want a ajax call to a local script getting some information in plain text or something else. but it won't work. I think cross scripting should not a problem at this point or?
the javascript code is simple:
var targetUrl = "http://localhost/jQueryProxy.php";
var parame...
I’m having an issue with sifr placed next to a floated img, Opera 9.6 is forcing the text to clear the image and display on one line. Firefox is also forcing the text to clear the first time the page is loaded, although a refresh fix’s this and the problem will never occur again, only to return if cache is cleared and the browser restart...
This is a weird one.
We're writing a Django application with some rich javascript UI, using both Yahoo YUI and jQuery.
Our main page template now includes a fair number of js files. And we're starting to see a strange error in Firefox (3 and 3.5) . Sometimes the javascript crashes. And inspecting in Firebug we see that a syntax error o...
In typical web design fashion, there's always something that doesn't look quite right between two browsers. This one just completely lost me though.
I open the site in Safari. Everything is dandy.
I open it in Firefox. The entire page is displayed, just fine, but about 10-20% smaller. Images, fonts, divs. Everything.
Does this make an...
We've got an Eclipse RAP application that's behaving a bit strangely in Firefox - two distinct problems.
When you browse around, you can click on a button in one part of the system. This opens a popup window like so:
IWorkbenchBrowserSupport bs;
bs = PlatformUI.getWorkbench().getBrowserSupport();
int style = IWorkbenchBrowserSupport.AS...
I want to backtrace the makefile for firefox so that I can get the final gcc command that is used to compile the c++ files. How can I do that?
...