2

This is useful for if you need to paste the same info into a form over and over. Replace the ReplaceThisTextHere with what you need to paste. Select the field you want to fill and click the bookmark.

javascript:(function(a){a.value=a.value.slice(0,a.selectionStart)+"ReplaceThisTextHere"+a.value.slice(a.selectionEnd);})(document.activeElement);

This is useful for if you need to paste the same info into a form over and over. Replace the `ReplaceThisTextHere` with what you need to paste. Select the field you want to fill and click the bookmark. ` javascript:(function(a){a.value=a.value.slice(0,a.selectionStart)+"ReplaceThisTextHere"+a.value.slice(a.selectionEnd);})(document.activeElement); `

No comments, yet...