Load tab content from another HTML

Hello again everyone,

Is there a DOM7 equivalent to jQuery load()? I’m using a tab system but wish to load a tab’s content from another HTML, local to the app, just for the sake of keeping things clean.

Thanks

There isn’t such thing. Just use it like:

app.request.get('something.html', function (data) {
  $('#something').html(data);
});
1 Like