Search Results

4
votes

Firefox 3.03 and contentEditable

I've dealt with this and my workaround is clearing the selection when I disable contentEditable: if ($.browser.mozilla) { // replace with browser detection of your choice window.g …
1
vote

window.ScrollMaxY or X - How to set in FireFox 3?

Sounds like what you are looking for is different CSS. Instead of trying to bend the browser to fit the HTML, it would be easier to find a better solution for the actual problem; keeping the div in …
2
votes

Unique element ID, even if element doesn’t have one

The answer is no, there isn't an internal id you can access. Opera and IE (maybe Safari?) support .sourceIndex (which changes if DOM does) but Firefox has nothing of this sort. …
0
votes

Unique element ID, even if element doesn’t have one

If you can write to the DOM (I'm sure you can). I would solve this like this: Have a function return or generate an ID: //(function () { var idCounter = new Date …
1
vote

What is different with window and div widths between firefox and IE

You are dealing with "one of the best-known software bugs in a popular implementation of Cascading Style Sheets …
3
votes

Get selected text and selected nodes on a page?

You are in for a bumpy ride, but this is quite possible. The main problem is that IE and W3C expose completely different interfaces to selections so if you want cross browser functionality then you …