Ich habe es erstmal unter Firefox probiert:
input.selectionStart = pos;
input.selectionEnd = pos;Die Zeilen werden ignoriert.
Wenn die richtigen Werte eingetragen sind bei mir nicht.
function unselect(input)
{
if(typeof input.selectionStart != 'undefined')
{
input.selectionStart = 0;
input.selectionEnd = 0;
}
}
Struppi.