How to Select particular text in textbox while textbox receives focus
I am developing one ASP.NET application with VB code.I have one textbox to hold the amount, which contains default value as "0.00". Now the problem is while the textbox gets focus it selects all the text. But i want to select only 0 that is before precision and I do not want to select after precision. Hope someone will help me. Thanks in advance assume you have TextInput you want to select its first character, whenever its selected <input id="MyText" type="text" value="text" onclick="MyText_click()" /> and the script is like this: <script> function MyText_click() { var input = document