Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/76976bd2687d73889a596beccd6fcbe5 to your computer and use it in GitHub Desktop.
Save hbulens/76976bd2687d73889a596beccd6fcbe5 to your computer and use it in GitHub Desktop.
var site = site || {}; site.baseUrl = site.baseUrl || "";
$(document).ready(function (e) {
$(".partialContents").each(function (index, item) {
var url = site.baseUrl + $(item).data("url");
if (url && url.length > 0)
{
$(item).load(url);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment