0
votes
2answers
38 views

Unstyled text flashes before page fully loads in Firefox

I have a web page which loads inside of a JQuery UI Dialog. When the page loads in Firefox, the plain text appears for a second before all the css and javascript runs. Once everything loads, the text ...
1
vote
0answers
21 views

Mozilla Firefox form values reset on history.back

I'm writing a PHP script. I've got a form uses post method and action to another page. If an error occures, I show a message on that target page, and let the user go back via a link that triggers ...
0
votes
1answer
36 views

window.open losing control in click event handler in firefox

I'm trying to open a new window using window.open, in an event handler for a click event: var onButtonClick = function() { alert('start'); window.open('http://www.google.com', 'goog', ...
4
votes
2answers
103 views

Inconsistent scrollwidth for iframe in FF/IE

I've got an iframe in my page, the contents of which are changed by clicking links in the main body of the page. I am trying to resize the width of the iframe to match the contents, like so: ...
1
vote
0answers
47 views

javascript: Range selection issue in firefox

I am facing an issue firefox. I am trying to insert 'br' tag in a content editable div with the following code. This code is taken from Insert html at cursor in a contenteditable div function ...
0
votes
1answer
21 views

Showing Hierarchical Node Structure of DOM with FireBug

I am using FireFox 20.0 and am using FireBug to debug my JavaScript code. When I clicked on the DOM tag, it would shows the hieracrchical node structure with fields like children, childNodes, ...
0
votes
0answers
52 views

Clear Specific Host Cache on Firefox Extension

Its my first time to build a Firefox extension. And I need to clear the cache of specific hosts but multiple. Around 5 or so hosts cache to be wiped when this functions is called. But this code ...
-1
votes
2answers
58 views

What is DOM generated code?

I am obviously new to HTML and Web Browsers and python too. I installed the Web Developer extension in Firefox and noticed that in addition to the "View Source" option there are two additional "View ...
0
votes
0answers
16 views

How to implement ESCUDO - Ring hierarchy structure in Mozilla Firefox?

I am trying to implement "Ring" structure for implementing ESCUDO fine grained access control mechanism in Mozilla. http://www.cis.syr.edu/~wedu/Research/paper/icdcs2010_escudo.pdf I am trying to ...
0
votes
0answers
18 views

detect if storageArea is local or sessionStorage

When attaching event listeners to the "storage" I get back the subject in the form: StorageEvent { key; // name of the property set, changed etc. oldValue; // old value of ...
0
votes
1answer
38 views

Measuring HTML parsing time in web browsers

In my project, I attend to measure the HTML parsing time, that is, how much percent of processing time is for HTML parsing when a web browser handling a particular webpage. It seems instrumenting ...
-3
votes
1answer
95 views

Firefox not passing values from an input created by javascript function; IE works [closed]

php code, this is a small function to use javascript to create an input, then post those uploaded files to the next page. it works well on IE, BUT Failed on FF. It will just pass the first and only ...
2
votes
0answers
59 views

(NS_ERROR_FAILURE) Mozilla Browser

I added an event handler to handle a mousedown event in firefox but I get a NS_error failure message when this event is encountered, the error message is displayed on firefox but chrome handles the ...
0
votes
0answers
103 views

simpler way to modify user agent from a firefox extension

I am trying to do some simple modification to a firefox addon. I want some http request to be done sending a different user agent than the one from firefox. The addon is using xmlhttprequest. There is ...
1
vote
1answer
115 views

Why doesn't event.relatedTarget work with focusin/focusout event in Firefox?

I need to find the previously focused item in my focusin function. Here is an example code: $('#id').on('focusin', function(event) { //console.log(event.relatedTarget.nodeName); //doesn't work } ...
1
vote
2answers
360 views

why the javascript navigator.appName returns netscape for Safari, FIrefox and chrome

Why the navigator.appName returns netscape for Safari, FIrefox and chrome? What do they have to do with the old browser Netscape? it is because of DOM0?
0
votes
1answer
132 views

Firefox 17 reports created DOM element (HTMLObjectElement) as function when using “typeof”

I have a flash object (HTMLObjectElement) created (with jQuery) and added it to the DOM. That is working OK in all browsers. This object is saved/stored in a variable called "o.data.cam". Other ...
0
votes
1answer
515 views

iframe won't scroll in Firefox 17

After upgrading Firefox to 17 iframe scrolling stopped working in my web application. I've read that something has changed with mouse wheel event in the latest Firefox ( ...
0
votes
3answers
104 views

Not possible to submit by javascript in Firefox in jquery onclick event

In a jquery onclick event I modify the dom and then do a submit it doesn't work in Firefox but works well in Chrome and IE. function test(){ $('#b2').remove(); var form = ...
2
votes
0answers
87 views

Does Firefox 17 report correct scrollWidth?

I have html code in table like this <td style="overflow: hidden"><a href="...">Very long text</a></td> Text overflows cell, but FF 17 reports wrong scrollWidth. It's like ...
2
votes
1answer
124 views

Fractional part of pixels on Firefox/Firebug

Today I stumbled on a simple box styled as follow: div.menubox { background-color: #FFFFFF; border: 1px solid #887777; border-radius: 0 5px 5px 0; box-shadow: 1px 1px 3px #998888; ...
1
vote
0answers
45 views

Weird caret behavior when using selection on word-wrap boundary in Firefox

I'd like to make use of selection object that can be retrieved from window.getSelection(). So my initial attempt is to check whether a returned range from getRangeAt() can be applied back to the ...
1
vote
1answer
66 views

DOMException has stack in Chrome but not in Firefox

I'm trying to generate a stacktrace in JavaScript. I have an implementation that works very well in Chrome, but there is an issue in Firefox: native Exceptions like DOMExceptions don't have a .stack ...
0
votes
1answer
75 views

Access dom after “chrome-document-global-created”

I need to get the DOM when the Mozilla observer event "chrome-document-global-created" is fired. Therefore, I have the following code. But how can I get the DOM from there? Data is null (according to ...
4
votes
1answer
69 views

Firefox not repainting when scrollable box sits on top of element with opacity and height

This is probably the most bizarre thing I've encountered in my years of website coding, so I thought I would run it by some people who are way smarter than me to try to explain why this is happening. ...
1
vote
1answer
802 views

Javascript, programmatically trigger file download in firefox

I have a data uri in memory that I would like the user to download. This fiddle works in chrome but not FF: http://jsfiddle.net/6W2TY/ When you click run it will download the tiny image in chrome ...
0
votes
2answers
855 views

Jquery StopPropagation not working in firefox

I have this code working on Safari and Chrome , but not in Firefox . Is firefox having a problem with StopPropagation() ? http://www.spotmaroc.com/ here you can check what i am doing ..(check the ...
0
votes
2answers
81 views

Get surrounding DOM node of selection

I need to get the surrounding DOM node from a selected text. How do I do that with the Firefox Add-on SDK? Or is there any other possibility that I can use in my extension? E.g. (the selected is ...
0
votes
0answers
138 views

Anchoring a Firefox add-on sdk Panel with a DOM Object from another Panel.

I am making a restartless extension using the firefox add-on sdk. I am using Erik Vold's toolbar button to serve, which opens a panel on click. This panel has html buttons which when clicked, opens ...
1
vote
0answers
157 views

Why keyup event fire in chrome but not in firefox

I bind some events to textarea. keydown and keyup works well in Chrome, but not in firefox: You can copy the following code in the console of firebug to try out. Firefox version: 7.0.1 OS: Ubuntu ...
1
vote
1answer
316 views

Firefox won't set input.value in keydown handler… but it works while debugging?

It's late at night, I'm behind deadline, and I'm wrestling with a problem that seems very, very strange to me. Maybe it's something obvious I'm missing 'cause I'm tired, but I dunno... anyway here's ...
0
votes
0answers
59 views

XML Parsing at 64 bit browser

I have to parse the xml file and it is done well if I have used any of the 32 bit Firefox, but not working well at 64 bit browser. I have used the DOM Parsing in java program. Would be any difference? ...
0
votes
0answers
93 views

Firefox: first DOM action after appending big tree awfully slow

I have the following JS pseudo code: var tree = $('<div id="root"></div>'); tree = build_big_tree(); // appends ~250 rows / 3000 DOM elements incl. 1 <audio> per row ...
1
vote
0answers
246 views

Event-Handling Crossbrowser Issue, mousedown window.event.clientY

So I am having an issue with my event handling in a script I am writing. The entire thing is working fine in chrome, and in safari even though it runs VERY slowly, it still works. In Firefox one of ...
0
votes
2answers
135 views

What is the correct way to access an element's CSS style properties from JavaScript?

The following JavaScript code works perfectly in WebKit-based browsers, but it doesn't work in Firefox: canvas.style['left'] = "50%"; canvas.style['margin-left'] = "-" + (width / 2) + "px"; ...
2
votes
2answers
3k views

Why is getElementsByTagName returning undefined?

I'm trying to call document.getElementsByTagName, and I'm getting back undefined as a result, no matter what parameter I pass. (Even if I pass "*".) I tried Googling for it, but all the search ...
0
votes
0answers
161 views

How to properly change the position of statusbar-display element in Firefox

I'm developing a Firefox Extension and I want to place an permanent browser element containing a JApplet on the right side of the browser. I have described a problem I faced doing that in a previous ...
1
vote
2answers
103 views

Is there a way to change about:config DOM value for only one website in firefox

I would like to allow one website to use the window.resizeTo(); function but disallow all the other websites from doing that... I wonder if there is any way to do that even if its difficult. even if ...
0
votes
2answers
131 views

form not defined in Firefox

i'm trying to get the value of the element option: <div id="decorazioni_agg">Decorazioni aggiuntive:<br> <select id="decorazioni" name="decorazioni"> <option ...
1
vote
2answers
1k views

DOMAttrModified doesn't fire

I'm trying to trigger an event handler when a script modifies an input element (text field.) On Internet Explorer, I can use the onpropertychange event, but on Firefox and other browsers there is no ...
1
vote
0answers
91 views

Unique issue with id attr

On this page http://stage.directsight.co.uk/detail/U5 the form on the right(the one with radio buttons) seems to have a unique issue. using jquery, its id attribute comes out to be, a node list. this ...
2
votes
1answer
232 views

Stymied by recent changes in browser javascript DOMParser and XSL

The following used to work on Firefox 3.5.x and 3.6.x but it no longer does in Firefox 11.x or Safari 5.1.x. Javascript isn't my specialty, so I'm not up to speed on recent changes. Specifically, the ...
0
votes
0answers
51 views

How can I count all the DOM changes and dynamic function calls in a page using userscript?

I want to measure the number of function calls that are used to dynamically interpret JavaScript code (e.g., eval and setTimeout), and the number of DOM changes that may lead to executions (e.g., ...
1
vote
1answer
413 views

Firefox Extension: Access the DOM Before It's Loaded

I'm trying to create a Firefox extension that fires my Javascript code before any of the current page's Javascript is fired. My Javascript code will basically control whether or not the page's ...
1
vote
1answer
315 views

Firefox 'loading' wheel keeps spinning after iFrame submit

I have a very peculiar issue with Firefox and I've been unable to find out why. Basically I have a system where AJAX is used to submit data to PHP API, but when file uploads are used, then it will not ...
0
votes
1answer
303 views

HTMLCollection.namedItem() behavior difference between Forefox and Chrome?

DOM4 spec says namedItem() should returns the first element with ID or name from the collection. I observed that Firefox behaves correctly but chrome returns all matching Element objects inside a ...
0
votes
1answer
103 views

Attr object indexing issue inside NamedNodeMap object

What does standard specify about indexing sequence with Attr objects inside NamedNodeMap object? I am getting reverse sequence in firefox and chrome. <form action="test.php" method="post" ...
5
votes
2answers
386 views

Firefox and chrome behavior difference between constructor.prototype?

After experimenting so much time, i figured out that __proto__ or Object.getPrototypeOf() method is the correct way to traverse prototype chain in DOM objects. Using a series of constructor.prototype ...
0
votes
1answer
202 views

DOM prototype chain traversal in FireFox

Chrome gives follwing prototype chain for a div: element = document.getElementById("test") <div id=​"test">​…​</div>​ element.__proto__ HTMLDivElement element.__proto__.__proto__ ...
1
vote
1answer
457 views

Jquery offset function making the top style a negative number in Firefox

I am tying to create a custom alert box with fixed positioning. It works great in chrome, but I can't get the dynamic position right in Firefox. I set a modal container to equal the size of the ...

1 2 3 4