Skip to content

Instantly share code, notes, and snippets.

@newvertex
Created September 15, 2016 13:52
Show Gist options
  • Save newvertex/66a1fbdafc84ba39219137474d60e117 to your computer and use it in GitHub Desktop.
Save newvertex/66a1fbdafc84ba39219137474d60e117 to your computer and use it in GitHub Desktop.
Add LiveReload to current Document
// Replace with your current LiveReload url
var liveReloadUrl = 'http://localhost:35729/livereload.js';
function liveReload(url){
var liveReloadTag = document.createElement('script');
liveReloadTag.type = 'text/javascript';
liveReloadTag.src = url;
document.body.appendChild(liveReloadTag);
}
liveReload(liveReloadUrl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment