Tagged Questions

27
votes
5answers
7k views

How to tell if a DOM element is visible in the current viewport?

Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the viewport)? (The question regards Firefox)
22
votes
5answers
10k views

How to properly invalidate an HTML5 Cache Manifest for online/offline web apps?

I'm currently using a Cache Manifest (as described here). This effectively makes the necessary resources to run the application available when the user is offline. Unfortunately, it works a little ...
18
votes
8answers
11k views

Button inside of anchor link works in Firefox but not in Internet Explorer?

Everything else in my site seems to be compatible with all browsers except for my links. They appear on the page, but they do not work. My code for the links are as follows- <td ...
14
votes
5answers
10k views

jQuery html() in Firefox (uses .innerHTML) ignores DOM changes

I'm really suprised I haven't run into this problem before, but it seems that calling jQueries .html() function on an element ignores changes in the DOM, i.e it returns the HTML in the original ...
13
votes
8answers
860 views

Cross-browser development

I'm developing a web application for a new service, starting from Firefox 3.5. The interface design is tableless, only using divs + CSS & performance-blessed practices. Now, while being ...
12
votes
1answer
93 views

Is there a way to keep Firefox from putting cached emails and passwords on my registration form?

I have a site with registration & modify account forms. When a user navigates to one of these pages, Firefox is filling in certain areas of the form. It is filling in: <input type="text" ...
12
votes
3answers
489 views

Firefox refusing to style element if CSS selector contains address element

Firefox appears to be refusing to style an html element if i use the <address> element in the CSS selector. Example: <footer> <address> <ul> <li ...
11
votes
4answers
336 views

How to force <br> line break in Firefox ContentEditable

I have a JavaScript WYSIWYG editor (not unlike CKEditor) running on a site. It has a setting that makes IE create <br> line breaks when you press Enter in the editor. That works great, but ...
11
votes
4answers
187 views

Create Firefox addon to fix broken webpage on the fly

At my job they use a "central login" facility on internal webpages. Whenever an internal webpage requires authentication, it forwards you to the central login, and after logging in, it sends you back ...
10
votes
3answers
857 views

Firefox 4 and table-layout: fixed

I have an issue which seems to have been introduced between Firefox 3 and 4. Essentially it's to do with table-layout: fixed. I have a scrollable table which uses two DIVs, one for the header and one ...
10
votes
5answers
3k views

Firefox does not show tooltips on disabled input fields

Firefox doesn't display tooltips on disabled fields. The following displays tooltip in IE/Chrome/Safari except Firefox: <input type="text" disabled="disabled" title="tooltip text."/> Why ...
10
votes
1answer
2k views

CSS pointer-events='none' and/or XUL mousethrough='always' in web pages for Firefox

Morning all. Very recently I asked this question on how to pass clicks through an element (e.g. full screen overlaying ). Received some good advice, but I still wondered which browsers supported this ...
10
votes
4answers
4k views

How do I suppress firefox password field completion?

I'm developing a website. I'm using a single-page web-app style, so all of the different parts of the site are AJAX'd into index.php. When a user logs in and tells Firefox to remember his username and ...
9
votes
8answers
2k views

Unwanted margin in inline-block list items

I have the following HTML: <ul> <li> <div>first</div> </li> <li> <div>first</div> </li> ...
8
votes
4answers
131 views

Is there a way to tell Firefox not to remember the state of my input fields on page refresh?

Firefox has a very annoying feature. It remembers the state of input fields when you hit F5. It's not just the value, it remembers even whether the input is disabled or not. Example: <html> ...
8
votes
7answers
6k views

How to remove the arrow from a <select> tag in Firefox

Hey all, I'm trying to style a <select> tag using CSS3 (I know, custom styles for form elements is a bad idea in general). I'm getting the results I desire in Webkit (Chrome / Safari), but ...
8
votes
5answers
2k views

Firefox 3 vs Firefox 4 development difference?

I was thinking of updating to Firefox 4 (currently running Firefox 3.6.15 -- hold on not a software question specifically!) and had some concerns when it comes to web development. My only concern is ...
8
votes
5answers
543 views

Detect Zoom in Firefox

I want to detect if the browser is zoomed in or out (don't really care to know the value, but I assume it will need to be found anyway in the decision process). I have read a lot of other SO posts on ...
8
votes
10answers
5k views

CSS issue: a:hover not working with IE (css Ninja needed)

Why does IE not change the background color on my site for tabs a:hover but does so in Firefox/Chrome/Safari correctly? What can I do to make it work in IE 6+? HTML <ul class="tabbernav"> ...
8
votes
8answers
2k views

Firefox 3.5 color correction hack?

After finally getting down to upgrading to FF 3.5, I noticed that some of my web pages have color problems. Specifically, say I have a PNG image with a color in it which is meant to be the same as the ...
7
votes
4answers
380 views

Crazy CSS Issue in Firefox Only - position fixed and background color

See this link: http://lsp2.tpdserver2.co.uk/test.htm Displays fine in IE/Chrome but in Firefox (6.0.1) there is a 1px border around the blue header. If I add a background color to the ...
7
votes
2answers
871 views

Zooming in Firefox Causes Page Layout to Break

I'm having trouble with this page: http://seatgeek.com/atlanta-hawks-tickets/. If you zoom out one level from the "normal" setting in Firefox, the page looks like this: http://cl.ly/5iU4. This ...
7
votes
4answers
312 views

Is “Page Source” BEFORE or AFTER Javascript has been rendered?

In Firefox there is a menu item that displays "Page Source": View | Page Source (Ctrl+U). In Internet Explorer there is a similar function. When you invoke it, it displays a nicely formatted and ...
7
votes
7answers
7k views

How do I get placeholder text in firefox and other browsers that don't support the html5 tag option?

This works in Chrome and any other browser that supports placeholder text in HTML5 <input id="name" name="name" type="text" placeholder="Please enter your name..." required /> <br /> ...
7
votes
4answers
141 views

any good new web-developer browser addons? (as in released in the last 6 months)

I used to be pretty ontop of the latest plugins but it's lost my attention recently (probably due to so many itentical blog articles called 'the best {num here} addons for firefox'). Last time i ...
7
votes
3answers
12k views

Web browser: Hide mouse cursor

Is it possible to hide the mouse cursor in a web browser? I've done this in Flash for a touch screen application, where a mouse cursor is distracting and unneeded. This time it's for a display screen ...
7
votes
11answers
9k views

jQuery .getJSON Firefox 3 Syntax Error Undefined

I'm getting a syntax error (undefined line 1 test.js) in Firefox 3 when I run this code. The alert works properly (it displays 'work') but I have no idea why I am receiving the syntax error. jQuery ...
6
votes
3answers
430 views

HTML Select with disabled Option returns wrong selectedIndex in FireFox

I have a Select with a disabled Option wich is the default selected one: <select name="select" size="1"> <option>0</option> <option selected disabled>1</option> ...
6
votes
2answers
155 views

About HTML5 offline storage

I have a few questions regarding HTML5 offline storage, which I could not figure out. Where exactly these files are stored in the Windows? I could not find here: C:\Documents and Settings[User ...
6
votes
2answers
174 views

How can I make browsers not prompt to save password on failed login attempts?

I'm writing an application in PHP that uses forms to retrieve the username and password input. After a successful login, web browsers will prompt to save the username and password (tested with ...
6
votes
6answers
253 views

How does a browser AUTOMATICALLY convert “Page Source” Javascript to HTML?

Now that I understand how to access both the raw HTML+Javascript (as received by HTTP GET) and the rendered-result of auto-processing of the Javascript upon page load completion, I need to understand ...
6
votes
4answers
1k views

Firefox cache textarea value?

I found a strange issue. Open a simple page in Firefox, the code is simple as below: <html> <body> <textarea></textarea> </body> </html> In Firefox, I ...
6
votes
1answer
398 views

Firefox: box-sizing and min-height

I can’t understand: is this really a bug or am I just missing out something? I have box-sizing: border-box set for all my div within an HTML document (with all the -moz and -webkit prefixes, of ...
6
votes
5answers
334 views

What is the difference between “Source” and “Generated Source”?

What is the difference between "Source" and "Generated Source"? Please explain with example. Edit: 3 July Which source "Search engine" uses, Generated or before generated?
6
votes
13answers
1k views

Is there a way to stop Firebug from working on a particular site?

Is there some way to make Firebug not work at all on a website?
6
votes
3answers
328 views

Google toolbar reporting “This page is in Filipino” when it is English

How does Google Toolbar determine the language of a page to offer translation from it? Google is mis-identifiying a simple login page on our site as Filipino and offering to translate it into ...
6
votes
5answers
2k views

How to bypass document.domain limitations when opening local files?

I have a set of HTML files using JavaScript to generate navigation tools, indexing, TOC, etc. These files are only meant to be opened locally (e.g., file://) and not served on a web server. Since ...
6
votes
2answers
2k views

How to produce same result on different browsers when embedding SVG file in HTML code?

I begin to have a solution for my previous question Overlay SVG diagrams on google map. But I have another (smaller) problem. I am using Firefox 3.5 and Safari 4 (on Mac), and when I am embedding SVG ...
5
votes
3answers
54 views

How to find out where the alert is raised from?

I'm just curious to know Is there ANY ways in ANY browser to find out where the alert I get is raised from? I tried it in chrome but there is no call stack available when alert shows. Any idea?
5
votes
3answers
215 views

CSS : absolute positioning of a button in Firefox

I want to display a button which takes all spaces of its parent which is himself absolute positioned. But it seems that Firefox has a bug with it (All runs perfectly in Chrome and Safari (Webkits), I ...
5
votes
4answers
423 views

firefox having “#;” in the addressbar

Why does firefox(haven't tested in another browser) has problems loading form values when a #; is in the addressbar? If i have an <input type='radio' checked="checked">, the presence of this ...
5
votes
3answers
247 views

Disappearing HTML dingbat entities

I'm coming across a weird issue with displaying "dingbats" html entities, specifically &#x2714; (✔). I am trying to display some checkmarks, wrapped in a simple <span>: <span ...
5
votes
1answer
651 views

Bug With Firefox - Disabled Attribute of Input Not Resetting When Refreshing

EDIT - This is a "feature" of Firefox which remembers form input values across page refreshes. To fix this behavior, you simply set autocomplete="off" on the form containing the inputs, or just ...
5
votes
4answers
673 views

Content of div is longer then div itself when width is set to 100%?

I have div of fixed width containing only input text box and width of that input is set to 100%. I expect it to fill the div but instead it is slightly longer. Demonstration code: HTML: <div ...
5
votes
2answers
1k views

Force Firefox to Reload Page on Back Button

How do you make Firefox rerun javascript and reload the entire page when the user presses the back button? I was able to do this in all browsers except Firefox from the help of another SO question by ...
5
votes
3answers
1k views

Firefox contentEditable div focus issues

I am using contentEditable div tags on my website and I have noticed a weird issue when using Firefox. Here is example source code: <html> <head> </head> <body> ...
5
votes
7answers
906 views

Firebug alternative for the IE

Is there a good alternative to Firebug that I could use with IE 7 and 8? I'm interested in modifying CSS/HTML on the go, as well as debugging some of the java script and viewing the positions of ...
5
votes
4answers
458 views

Is it possible to make part of the browser transparent to display underlying desktop/windows in a web app?

I am developing a web application (meant to run work as a rich client and able to afford requiring any (even nightly build) version of Firefox of Chromium). The application interface background is ...
5
votes
4answers
512 views

html doctype adds whitespace?

can someone please explain to me why having a doctype of <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> and <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> ...
5
votes
6answers
2k views

CSS Style Firefox/Safari/Chrome

i have a problem with css differences between browsers. i have a simple input textfield an a submit button. the should be arranged. with webkit (safari/webkit) everything looks fine but firefox doesnt ...

1 2 3 4 5 20