Почему этот код не работает:
$("#page1").live('pageinit', function() {
if (localStorage.fullscreen == "true") {
$("#page1").attr("data-fullscreen", "true"); // doesn't work
alert("should be fullscreen now"); // this works
}
if (localStorage.theme) {
$("header").attr("data-theme", localStorage.theme); // this doesn't work
alert("should be theme " + localStorage.theme); // this works
}
});
Согласно документации , это должно работать. Я также попробовал
$("header").data("theme", localStorage.theme);
но это тоже не работает.