Я пытаюсь использовать функцию, которая переключает ссылку на источник iframe на страницах Github.Это из здесь.
Источниками iframe являются эскизы p5.js, также размещенные на страницах Github.Вся страница (121templatetwo) работает локально, но при перемещении на Github Pages, iframe пуст.
Ссылка на 121templatetwo репо: https://github.com/lilykdonaldson/121templatetwo
Код для переключателя iframe (который также находится в репо):
var switcher$ = $('.switcher'), // select element
switchTarget$ = $('.switch-target'); // iframe
switcher$.on('change', switchIframeSrc); // event binding
// our functiono to switch the iframe src
function switchIframeSrc() {
// set the 'src' attribute of the iframe
// to the value of the selected option
switchTarget$.attr('src', switcher$.val());
}
// call the method on load
switchIframeSrc();
И ссылка наGithub Page , где iframe пуст.