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 …
3
votes
Javascript - loading/busy indicator or transparent div over page on event click
Javacript to show a curtain:
function CalculateAmountOnClick () {
var curtain = document.body.appendChild( document.createElement('div') );
curtain.id = "curtain";
curtain.onk …
0
votes
In JavaScript can I make a “click” event fire programmatically for a file input element?
There are ways to redirect events to the control but don't expect to be able to easily fire events to the fire control yourself as the browsers will try to block that for (good) security reasons. …
2
votes
Javascript - loading/busy indicator or transparent div over page on event click
I'm going to make some heavy assumptions here, but it sounds to me what is happening is that because you are directly locking the browser up with intense processing immediately after having set up …
11
votes
How can I give control back (briefly) to the browser during intensive JavaScript processing?
It just so happens that I was posting about this a moment ago …
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 …
4
votes
In javascript how can we identify whether an object is a Hash or an Array?
Is object:
function isObject ( obj ) {
return obj && (typeof obj === "object");
}
Is array:
function isArray ( obj ) {
return isObj …
5
votes
How can I use javascript timing to control on mouse stop and on mouse move events
That is a tricky one. A little bit of tinkering resulted in this:
function setupmousemovement() {
var map1 = document.getElementById('Map_Panel');
map1.onmousemove = (function( …
1
vote
How can I determine if a dynamically-created DOM element has been added to the DOM?
In a perfect world you could hook the mutation events. I have doubts that they work reliably even on standards browsers. It sounds like you've already implemented a mutation event so you could poss …
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 …
0
votes
Javascript function to ‘get element by parent class’ and assign
The function changes to:
function myFunction(element){
var liArray = document.getElementById("leftlist").childNodes;
var i=0, item;
while (item = liArray[i++]) {
if (item. …
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 …
2
votes
Embedded browser with iframe
Because there is only one history object shared within each tab this seems impossible. The proper way around it would be to test window.history.current or window.history.previous …
