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.