compañero la funcion me va quedando asi,
Código Javascript
:
Ver originalfunction ponCursorEnPos(pos){
laCaja = document.getElementById('#' + marcado)
if(typeof document.selection != 'undefined' && document.selection){ //método IE
var tex=laCaja.value;
laCaja.value='';
laCaja.focus();
var str = document.selection.createRange();
laCaja.value=tex;
str.move("character", pos);
str.moveEnd("character", 0);
str.select();
}
else if(typeof laCaja.selectionStart != 'undefined'){ //método estándar
laCaja.setSelectionRange(pos,pos);
forzar_focus(); //debería ser focus(), pero nos salta el evento y no queremos
}
}
la ejecuto con esto
Código Javascript
:
Ver original$('#'+marcado).focus();
ponCursorEnPos(5);
y me da el siguiente error en el chorme
Uncaught TypeError: Cannot read property 'selectionStart' of null