firefox

Clicking A tag in IE6 and FF using jQuery

I have a div that is returned from an ajax call which contains an a. I need to click it in javascript, however I cannot find a way that works in both IE6 and FF. This works in FF but generates an object required error in IE6: $('#mylink').click(); This works in IE6 but generates a $("#mylink").get(0).click is not a function error in ...

activate or deactivate Addons via command line or config file

Is it possible to activate or deactivate firefox addons via command line or config file? ...

IE-7 Problem with rendering

I have embedded openwysiwyg editor in web application. The things work perfectly fine in firefox. So the exact scene is I select a drop-down option for email and text area shows up. This text area is replaced by openwysiwyg editor for email formatting. So this looks perfect in firefox, but doesn't work correctly in Internet Explorer 7. I...

Space in html can't find it. Safari vs IE & Firefeox

Hi, I'm working on a website and in Safari it looks perfect (I Work on Mac). In firefox and IE it isn't looking good. http://www.d-votion.be/djnobels/djgentux/index.html Could someone help me? Greetings, Nico ...

Jquery code working in Chrome but not in Firefox

I have this piece of code that reveals a couple of divs when it is clicked and then they are hidden once another link is clicked. I'm trying to get this to show in Firefox and it may not be a problem in the js but all help is greatly appreciated. <script type="text/javascript"> $(document).ready(function(){ $('.fadein')....

regular html table border show up very strange in firefox

I created a html table and used this css to style the border as i wanted: the top row and column to be one color and the rest of the table to be stripes alternative row colors regular single black border over each cell Here is my css: #functionMatrixTable td { border-collapse: collapse; border-width:1px; border-color: Black; bor...

forms.elements.length in ff

Hi! I have a form validation routine in JS which cycles through elements of a the first form on the page. I read the size of the elements array like this: maxi=document.forms[0].elements.length; This works fine in IE returning 23. In FF it always returns 0 and no validation at all is performed. Any suggestions? Thanks! ...

Document.oncontextmenu, component is not available (firefox)

I have a script for a website, and one of the things ti does right at the end if attempt to disable an anti-right click protection in a website if($("span[class=MembersNameDisplay]").exists()){ var list_row = document.getElementsByTagName('script'); if(list_row != null){ list_row[0].parentNode.removeChild(list_row[0]); ...

sIFR 3 (r436) is loading terribly slow in Firefox (3.5.6) on Mac OSX

For some reason sIFR is taking FOREVER to load here (almost to the point of crashing the browser): http://www.pginvestor.com/phoenix.zhtml?c=104574&amp;p=irol-news&amp;nyo=1 This is only occurring in Firefox (3.5.6 on OSX) and seems to be an issue when there is loads of content (multiple links with hover, etc.). Similar pages do not hav...

Title attribute to img tag not displaying in Firefox 3.0 Win XP

I have the following tag on my webpage which I am designing in Firefox 3.0: <img src="/path/picture.png" alt="someText" title="Click here!" /> When I use Internet Explorer 7, the text "Click here!" appears when I hover over my icon. However, Firefox does not display any tooltip when I hover over the image. I've read that Firefox does ...

Pages loads twice on Firefox?

Hello all, I thought I had answered this question before thanks to StackOverFlow, but I hastily took an answer and it turns out not to be the real cause to my problem. I have checked my Apache Access Log: This is me browsing my web app on Google Chrome Browser. 127.0.0.1 - - [06/Jan/2010:22:17:35 +0000] "GET /webs/end/new.php HTTP/1...

Detecting local file drag'n'drop with HTML/JavaScript

There is a HTML textarea. I'm able to catch that event when a local file is dragged and dropped onto the textarea. But how to obtain the name of the dropped file? (To be modified and inserted into the textarea finally.) The following expressions returns None in that case: event.dataTransfer.files event.dataTransfer.getData('text/plain'...

Add on in Safari and Firefox on Mac

Hello All, I want to create a toolbar and a button over this tool as an add on in Safari and Firefox. I never created one, so if anyone could suggest me what are actually required to create add on for them, it would be highly appreciated. I want to develop this add on for browser versions of Mac. Thanks, Rahul ...

Embed Firefox browser in Java Swing

I am wondering if it is possible to embed Firefox browser as a component in a Java Swing based application. I have done a bit of research from the Internet, but I could not find an answer. Some people suggest to use other browser component avaiable in Java. I do not think that is preferable, as the rendering engine would be different to...

Getting firefox url

hello, I need to know the url on wich the user currently is.(with firefox) I thought of a keylogger to keep track of the url, but what when the user clicks a link? The title`s not enough, I need the complete url. With IE this is easy, but with firefox it isnt. for IE i'm using: private string GetUrlFromIE() { IntPtr windowHandle = GetFo...

a span floated right within a div - why a new line in IE?

I have 1 span within a container div. I want the span floated to the right. The content within the div and the span should be on one line. In Firefox, that's how it displays. But in IE, the span is displayed on a new line: http://i48.tinypic.com/etzg5f.png Why do the browsers display the content differently? ...

Javascript behaviour difference between IE and Mozilla Firefox?

I have the following code which should update a label to say "please wait..", then run a function, and then update the label again to say it has completed: <asp:Button ID="Button1" runat="server" Text="Upload" onclientclick="document.getElementById('errorMessage').innerText='Please Wait...';" onc...

Quick MSDN Search in Firefox

Is there a way to get an MSDN search bar in Firefox which will autocomplete .Net class and member names (and preferably also Win32 API methods) and take me directly to the MSDN page? Google toolbar with Shift+Enter (I'm feeling lucky) will usually go directly to the msdn page for a .Net class, but it doesn't have targeted autocomplete....

Getting HWND from firefox

I am writing an extension for Firefox, and I need to find out the window's HWND. I can't enumerate running processes or anything like that, as it needs to be able to handle multiple instances and tell one from the other. Is there a way of doing this via a javascript extension in Firefox? ...

Sending POST data in XUL?

I'm trying to send POST data to the current tab, based on this (https://developer.mozilla.org/en/Code_snippets/Post_data_to_window). But it doesn't seem to be working, nothing happens... I'd be very grateful to whoever shines light on the problem! Thanks in advance! :D var dataString = "name1=data1&name2=data2"; var stringStream =...