The esp8266 portion of the project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
281 B

5 years ago
  1. $(function(){
  2. var includes = $('[data-include]');
  3. jQuery.each(includes, function(){
  4. var file = '/' + $(this).data('include') + '.html';
  5. $(this).load(file);
  6. });
  7. });
  8. // $(document).ready(function(){
  9. // $( "#header" ).load( "/menu.html" );
  10. // });