Search

What the Quote?

"It is the galaxy eating, thought devouring, happiness destroying monster black hole of suckage."

Devin Olson

"If you were a Boy Scout, I'd give you a merit badge for that."

Steven Rodgers

"To be or not to be...."

William Shakespeare

« Ending the suspense - pricing structure for XIDED | Main| Tease: Refresh Design via HTTP »

Using bookmarks to quickly append the query string

Category show-n-tell thursday
This week's SnTT isn't terribly complicated, just something that saves me time. Any bookmark (or favorite, if you're of the IE persuasion) that begins with "javascript:" instead of a recognized protocol ("http://", "ftp://", etc.) affects the currently open page instead of launching another. This gives you a one-click way to add any query string to the existing URL. For example:

javascript:window.location.replace(window.location.href + "&Login")

The same approach can be used in conjunction with Ben's approach to displaying debugging information:

javascript:window.location.replace(window.location.href + "&Debug=1")