Knowing the jQuery Caret plugin, I\'m still seeing no way to do the following on a single line text box in HTML (i.e. the input:type=text control) with JavaScript:<
input:type=text
You could try triggering a right key press after focus.
$('#textbox').focus(); var e = jQuery.Event("keydown"); e.which = 39; // aka right arrow. $("input").trigger(e);