Created
March 15, 2013 19:59
-
-
Save italoveloso/5172688 to your computer and use it in GitHub Desktop.
Enviar por e-mail simples e prático.
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
$('#enviaremail').on('click',function (e) { | |
var link = 'mailto:?body='+document.URL+'&subject='+document.title; | |
window.open(link, 'Enviar notícia por e-mail', 'width=600,height=600'); | |
e.preventDefault(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment