Search Results

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 …
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

Change of class does not result in the new class’s rules being applied in IE6??

Guess one: Rendering bug 1 Make sure that you have triggered hasLayout on the elements. You can do this by giving them a height or, if that isn't a posibility then position = relative & …
7
votes

Styling horizontal rules

The classic way of doing this is creating a wrapper around the <hr> and styling that. But I have come up a CSS trick for image replacing the element without the need for extra markup: …
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. …
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 …
1
vote

Scraping largest block of text from HTML document

Here's roughly how I would approach this: // get array of all elements (body is used as parent here but you could use whatever) var elms = document.body.getElementsByTagName('*'); v …
1
vote

How best to make a link submit a form.

You should use a button (and input or button of type submit) to submit a form. If you need any additional features that a link has but input elements don't have (such as hover), then it is …
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 …
5
votes

How to get elements which have no children, but may have text?

Get any element that doesn't have any other element: $('*:not(:has(*))'); …
1
vote

Links on top of elements with onclick-handlers

You get around this by testing the original target of the event in your handler. Something along the lines of: function doSomething ( e ) { // get event object and target element …
3
votes

repeating id’s of element children

Read the spec: This attribute [id] assigns a name to an element. This name mus …
1
vote

Given an x,y coordinate, I need to find all html elements underneath it.

You might be looking for the elementFromPoint method that exists in MSIE, FF3+ and in some form in Safar …
1
vote

input focus weirdness when pressing tab key on a form where change handlers on select elements enable or disable inputs

My guess is that your problem is that due to differences in the sequence of events between browsers, the change event is getting fired after the focus has moved. There are 4 events fired: …