Your Ad Here

Posted By

roberocity on 10/10/06


Tagged


Versions (?)

Who likes this?

4 people have marked this snippet as a favorite

shamrog12
rnrleachryan
shachi
vali29


InsertAtCursor


 / Published in: JavaScript
 

  1. function insertAtCursor(myField, myValue) {
  2. //IE support
  3. if (document.selection) {
  4. myField.focus();
  5. sel = document.selection.createRange();
  6. sel.text = myValue;
  7. }
  8. //MOZILLA/NETSCAPE support
  9. else if (myField.selectionStart || myField.selectionStart == '0') {
  10. var startPos = myField.selectionStart;
  11. var endPos = myField.selectionEnd;
  12. myField.value = myField.value.substring(0, startPos)
  13. + myValue
  14. + myField.value.substring(endPos, myField.value.length);
  15. } else {
  16. myField.value += myValue;
  17. }
  18. }
  19.  
  20. // calling the function
  21.  
  22. insertAtCursor(document.formName.fieldName, 'this value');

Report this snippet  

Comments

RSS Icon Subscribe to comments
Posted By: GSharp on February 19, 2010

Very useful, thanks. Found one minor issue, in Firefox 3 the focus is not returned to the field. Here's what I did to focus a place the cursor correctly:

myField.focus(); myField.setSelectionRange(startPos + myValue.length, startPos + myValue.length);

Posted By: ChristianLouboutin on August 9, 2010

Christian Louboutin - You know the first sight is very important not only you are hunting boyfriend but also you are looking for a shoe. Which case may affect male chose girl as his girlfriend?? handsome, lovely, kind-hearted. In a similar way, when we pursue shoe we choose the one which is comfortable, style, and cheap. Maybe you want to say Christian Louboutin pumps are hard to find like the girl admire in the heart. Absolutely the girl maybe is hard to find but the shoe, today, just today, you can get it, if you are access to our Christian Louboutin shoes website.

Posted By: rainie on September 17, 2010

Patek Philippe iwc is your best choice.Patek Philippe patek philippe arouses deep admiration due to reliable quality,refined design and additional complications.Replica Patek Philippe rado replica are very close to the originals.Few people will know the difference that it is a tag heuer replica.If you don't want to buy genuine Parmigiani watches then high quality franck muller replica are your ideal choice.Nowadays,many manufacturers use the same materials and the same design requirements as the authentic to create hublot replica and sell them at a fraction of the price.These Parmigiani franck muller replica will certainly meet your personal needs.Just look hublot replica

You need to login to post a comment.