Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <button class="button">Open Email</button>
  2.  
  3. $(document).ready(function(){
  4. $('.button').on('click',function(){
  5. window.location.href = "mailto:user@example.com?subject=Subject&body=message%20goes%20here";
  6. window.location.href = "mailto:user@example.com?subject=Subject2&body=message%20goes%20here";
  7. });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement