I have a textbox that when I put on focus I want the cursor to goto the end of the textbox.
The solution that keeps coming up is just
this.value = t
Simple And Working 100%
1.Focus 2.Take the value 3.Empty It 4.Put the value back $("#catg_name").focus(); var value = $("#catg_name").val(); $("#catg_name").val(''); $("#catg_name").val(value);