The cursor position on focus is wrong does not default to 0 position it goes to wherever I click it does anyone have any suggestions?
$('input[type="text"][name="name"]').focus(function() {
$(this).setCursorPosition(0);
}
Would something like the above work I can't see anything in my code thats causing this.