Created
January 22, 2014 20:05
-
-
Save sdeluce/8566355 to your computer and use it in GitHub Desktop.
Faire qu'un lien href s'ouvre dans une nouvelle fenetre
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
| $('a[@rel$='external']').click(function(){ | |
| this.target = "_blank"; | |
| }); | |
| /* | |
| Usage: | |
| <a href="http://www.catswhocode.com" rel="external">catswhocode.com</a> | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment