Is it possible to control where in an input typing starts on focus?
e.g.
<input type="text" value="(+44)" id="phone_number" />
I need the user's typing to begin after the existing value, but leave the option to backspace and delete.
Something like:
$(document).ready(function(){
$('#phone_number').focus(function(){
//place type start after whatever value already exists
});
});