JavaScript: Cursor position in prompt box -
the default behaviour of prompt box selects entire text when opened. can behaviour changed custom position of mouse cursor within box?
prompt('please choose left window:', document.url);
for example want cursor pointed directly after //
.
have @ example in jsfiddle
main idea remove selection following:
$input.focus(); $input.val($input.val());
first focusing input, resetting it's value.
it's dom based, , not work prompt window. based on authors comment question.
Comments
Post a Comment