pjax:send eventListener doesn't work #221
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thanks for an interesting library @MoOx . I am trying to implement a white loading bar to the pjax code... I am also testing with logging the event to the console log but it only get's fired when there's a fresh restart of the whole page not just one section. Ideally I want to see it working also when changing page sections without a full reload.
This is my code:
var pjax;
var whiteloading;
document.addEventListener("DOMContentLoaded", function() {
// Init Pjax instance
pjax = new Pjax({
elements: "a", // default is "a[href], form[action]"
selectors: ["title", ".js-Pjax"],
cacheBust: false
});
});
whiteloading = $(".whiteloading");
whiteloading.show();
document.addEventListener("pjax:send", console.log("start"));
document.addEventListener("pjax:success", console.log("done"));