Skip to content

Instantly share code, notes, and snippets.

@jjulian
Created November 2, 2011 20:35
Show Gist options
  • Save jjulian/1334831 to your computer and use it in GitHub Desktop.
Save jjulian/1334831 to your computer and use it in GitHub Desktop.
Shortmail widget: you are going to use your own link, so hide the button
<script src="http://shortmail.com/widgets/compose-widget.js?v=1"></script>
<script>
Shortmail.ComposeWidget({
screenName: '[email protected]'
});
$(document).ready(function() {
// hide the button
$('button.shortmail-me').hide();
});
</script>
<a href="mailto:[email protected]" onclick="return Shortmail.showWindow();" title="Shortmail Me!">Send a Shortmail to jonathanjulian</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment