I'm looking for a way to write "xyz" in FireFox, and when I press a button, a URL of the form "http://www.something.com?ID=xyz" will open.
How Do I do that?
Thanks!
views:
16answers:
1
A:
you can add this line as a bookmarklet in Firefox
javascript:window.location.href=document.location.href+'?ID=xyz'
When on a page, click on the bookmark and '?ID=xyz' will be appended to the URL
rubayeet
2010-08-22 07:55:13