Skip to content

Instantly share code, notes, and snippets.

@abhivaikar
Last active February 7, 2018 13:19
Show Gist options
  • Save abhivaikar/87cd8976cc73b7b2c3465923dad1d596 to your computer and use it in GitHub Desktop.
Save abhivaikar/87cd8976cc73b7b2c3465923dad1d596 to your computer and use it in GitHub Desktop.
bookmarklet code for finding stackoverflow questions based on tag
javascript:(function() { var soBaseURL = "https://stackoverflow.com/questions/tagged/"; var tag = prompt("Questions related to?"); if(tag) {window.open(soBaseURL+tag); } else return })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment