Skip to content

Instantly share code, notes, and snippets.

View kandran's full-sized avatar

SAEZ Jonathan kandran

View GitHub Profile
@kandran
kandran / xpath-cheatseet.md
Last active August 29, 2015 14:24
XPath Cheatsheet
<template id="helloWord">
<style>
h1{
color: green;
}
</style>
<div>
<h1>Hello Word</h1>
<h2>...</h2>
</div>
var template = document.querySelector('#helloWord');
var clone = document.importNode(template.content, true);
var host = document.querySelector('#container');
host.appendChild(clone);
<link rel="import" href="myComponentToImport.html" />