Finally nailed this down on win7 IE8 - but I'm fairly sure the issue was the same before I installed over XP sp3 IE7.

Steps to reproduce -

  • New question
  • Add tag: tag
  • Add tag: bug, in the autocomplete list of suggested tags, select with the mouse.

This overwrites the first tag with the second, leaving me with a field of: bug bug (or if I hadn't finished, and clicked on "bug" with only "bu" in the field, I'll have "bug bu")

Seems to work fine if I just use arrow keys and enter, but sometimes I get mousey.

link|improve this question

20% accept rate
Excellent! It's not just Opera 9.64 after all. – random Sep 22 '09 at 6:12
It's a bug in the AutoComplete jQuery plugin by the way, just ran into the same issue with my own site where I use it. – Michael Stum Jan 29 '10 at 21:34
feedback

1 Answer

Okay, so this is a bug in the AutoComplete jQuery plugin. Within the function selectCurrent(), there is this line:

var cursorAt = $(input).selection().start;

this calls to another function in the AutoComplete plugin. Now, in Internet Explorer (8 at least), the second call to if ( field.createTextRange ) { succeeds and it enters that branch, while on FireFox, field.createTextRange is undefined, hence it jumps into the last block. Seems like TextRange is an IE-only object.

On IE, the call to range = document.selection.createRange() results in an empty range, possibly because nothing is selected (while on FireFox, the returns the index of the last character instead)

$.fn.selection = function(start, end) {
    if (start !== undefined) {
        // snip...
    }
    var field = this[0];
    if ( field.createTextRange ) {
        var range = document.selection.createRange(),
            orig = field.value,
            teststring = "<->",
            textLength = range.text.length;
        range.text = teststring;
        var caretAt = field.value.indexOf(teststring);
        field.value = orig;
        this.selection(caretAt, caretAt + textLength);
        return {
            start: caretAt,
            end: caretAt + textLength
        }
    } else if( field.selectionStart !== undefined ){
        return {
            start: field.selectionStart,
            end: field.selectionEnd
        }
    }
};

I do not know what the proper way of fixing this is, but I added a check in case we have an empty range, in which case I return the length of the string instead of 0. This mirrors FireFox' behavior.

    // snip...
var field = this[0];
if ( field.createTextRange ) {
    var range = document.selection.createRange(),
        orig = field.value,
        teststring = "<->",
        textLength = range.text.length;
    // Check for an empty range and return the length instead.
    if(textLength === 0){
        return {
            start: field.value.length,
            end: field.value.length
        }
    }
    range.text = teststring;
    var caretAt = field.value.indexOf(teststring);
    field.value = orig;
    this.selection(caretAt, caretAt + textLength);
    return {
        start: caretAt,
        end: caretAt + textLength
    }
} else if( field.selectionStart !== undefined ){
    // snip...

That fixes the Tag Overwrite problem. Another problem is that the cursor is not placed at the end of the line (as in FireFox) but at the beginning. This is a minor fix, back in the function selectCurrent(). Change this code:

$input.val(v);
hideResultsNow();
$input.trigger("result", [selected.data, selected.value]);
return true;

to this:

$input.val(v);
var ieInput = $input[0];
if(ieInput.createTextRange) {
    var range = ieInput.createTextRange();
    range.move("textedit");
    range.select();
}
hideResultsNow();
$input.trigger("result", [selected.data, selected.value]);
return true;

As said, this is only tested in my own environment and works fine there, but I do not know if this is really the proper way of fixing it.

link|improve this answer
1  
ok I am checking this in now – Jeff Atwood Feb 8 '10 at 6:24
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged