Possible Duplicate:
JavaScript: How can I insert a string at a specific index
Let's say I have this in my textbox:
'My name is John'
I want to insert this text: 'Johnson '
to index=11 in the textbox so that it looks like this:
'My name is Johnson John'
How to do this?