Skip to content

Instantly share code, notes, and snippets.

@jens1101
Created November 29, 2016 13:27
Show Gist options
  • Select an option

  • Save jens1101/d8b12b3e37f1c31658b40078ea1d8192 to your computer and use it in GitHub Desktop.

Select an option

Save jens1101/d8b12b3e37f1c31658b40078ea1d8192 to your computer and use it in GitHub Desktop.
Load an HTML file as template in jQuery
$.get('/html/template01.html').done(function(html) {
var template = $(html); //Create DOM element
//Do stuff with the new DOM element
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment