3
votes
Character offset in an Internet Explorer TextRange
I use a method based on this caret position trick:
// Assume r is a range:
var offsetFromBody = Math.abs( r.moveEnd('character', -1000000) );
Since moveEnd returns …
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 …
5
votes
Use double classes in IE6 CSS?
IE6 doesn't support multiple class selectors. The reason you see a change with the Orange class is because a.MenuButton.Orange is interpreted by IE6 as a.Orange …
3
votes
Risk of using contentEditable in IE
The contentEditable property works in Safari, Firefox 3, and Opera 9.
Since manipulation will undoubtably be through selections, your biggest problem will be getting the selection/ranges w …
0
votes
MSIE : jQuery’s append()/html() not working, resorted to getElementById().innerHTML
I guess you had to be there. Here are some possible points of failue:
jQuery.clean: The function that makes the fragment that gets added to the DOM.
This could be possible …
