Skip to content

Instantly share code, notes, and snippets.

@msfrisbie
Last active August 29, 2015 14:09
Show Gist options
  • Save msfrisbie/32472168fac36c85eba3 to your computer and use it in GitHub Desktop.
Save msfrisbie/32472168fac36c85eba3 to your computer and use it in GitHub Desktop.
Custom Elements
// JS definition
var SignupElementProto = Object.create(HTMLElement.prototype);
var SignupElement = document.registerElement('signup-page', {
prototype: SignupElementProto
// element property definition(s)
});
<signup-page></signup-page>
OR
document.body.appendChild(new SignupElement());
EXTENDING
// JS definition
var SignupElementProto = Object.create(HTMLElement.prototype);
var SignupElement = document.registerElement('signup-page', {
prototype: SignupElementProto,
extends: 'div',
// element property definition(s)
});
<div is="signup-page"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment