Created
January 30, 2014 12:48
-
-
Save andregumieri/8707670 to your computer and use it in GitHub Desktop.
Bookmarklet que pega o texto selecionado no browser e abre uma nova aba com uma busca no IMDB.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Bookmarklet que pega o texto selecionado no browser | |
| * e abre uma nova aba com uma busca no IMDB | |
| * | |
| * SITE PARA CRIAR O BOOKMARKLET | |
| * @link http://mrcoles.com/bookmarklet/ | |
| */ | |
| var s = window.getSelection(); | |
| if(s.rangeCount) { | |
| var q = encodeURIComponent(s.getRangeAt(0)); | |
| var u = "http://www.imdb.com/find?q=" + q + "&s=all"; | |
| window.open(u); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment