Get error message Uncaught TypeError: $(...).on(...).on(...).collapse is not a function
// Handle special case with option toggler (works only with jquery)
$("#showMoreOptions")
.on("shown.bs.collapse", function () {
storage.write("showMoreOptions", true);
})
.on("hidden.bs.collapse", function () {
storage.write("showMoreOptions", false);
})
.collapse(
storage.read("showMoreOptions") ? "show" : "hide"
);
At webtrees commit https://github.com/fisharebest/webtrees/commit/3faaf002227d16afd77a906db4683ac5c8df89ae
Get error message Uncaught TypeError: $(...).on(...).on(...).collapse is not a function