Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Copy email address to clipboard</h1>
<h2>This snippet copies the email address from a <code>mailto:</code> link to your clipboard on click instead of opening your email app.</h2>
<p>Try it out here: <a href="mailto:email@gmail.com">email@gmail.com</a>.</p>
<p>Paste it here to test: <input type="text"></p>
              
            
!

CSS

              
                .mailto-wrapper {
	position: relative;
}
.mailto-message {
	top: 0;
	left: 50%;
	transform: translate(-50%, -100%);
	position: absolute;
	display: none;
	width: auto;
	white-space: nowrap;
	font-size: 12px;
	background-color: black;
	color: white;
	padding: 2px 6px;
	border-radius: 2px;
	&:after {
		content: '';
	}
}
.mailto-wrapper:hover .mailto-message {
	display: block;
}

// not necessary for snippet
body {
	padding: 3em;
	line-height: 1.5;
}
h2 {
	font-weight: 400;
}
              
            
!

JS

              
                $(document).ready(function() {
	// Add class to mailto link
	// Needed to separate the disabling of the default action AND copy email to clipboard
	$("a[href^=mailto]").wrap('<span class="mailto-wrapper">');
	$("a[href^=mailto]").addClass("mailto-link");

	var mailto = $(".mailto-link");
	var mailtoWrapper = $(".mailto-wrapper");
	var messageCopy = "Click to copy email address.";
	var messageSuccess = "Email address copied to clipboard.";

	mailtoWrapper.append('<span class="mailto-message"></span>');
	$(".mailto-message").append(messageCopy);

	// Disable default action (opening your email client. yuk.)
	$("a[href^=mailto]").click(function() {
		return false;
	});

	// On click, get href and remove 'mailto:'
	// Store email address in a variable.
	mailto.click(function() {
		var href = $(this).attr("href");
		var email = href.replace("mailto:", "");
		copyToClipboard(email);
		$(".mailto-message")
			.empty()
			.append(messageSuccess);
		setTimeout(function() {
			$(".mailto-message")
				.empty()
				.append(messageCopy);
		}, 2000);
	});
});

// Grabbed this from Stack Overflow.
// Copies the email variable to clipboard
function copyToClipboard(text) {
	var dummy = document.createElement("input");
	document.body.appendChild(dummy);
	dummy.setAttribute("value", text);
	dummy.select();
	document.execCommand("copy");
	document.body.removeChild(dummy);
}

              
            
!
999px

Console