|
Метки: очистка ручная отмена |
(не показано 66 промежуточных версий этого же участника) |
Строка 1: |
Строка 1: |
| $(document).ready(function() {
| |
| $('a').click(function(event) {
| |
| var href = $(this).attr('href');
| |
| $.ajax({
| |
| url: href,
| |
| dataType: 'html',
| |
| success: function(data) {
| |
| var tempDiv = $('<div>').html(data);
| |
| tempDiv.on('DOMContentLoaded', function() {
| |
| $('body').html(data);
| |
| });
| |
| }
| |
| });
| |
| event.preventDefault();
| |
| });
| |
| });
| |
|
| |
|
| $(document).ready(function() {
| |
| var button = document.createElement("button");
| |
| button.innerHTML = "Сменить тему";
| |
| button.className = "theme-button";
| |
| button.onclick = toggleTheme;
| |
|
| |
| var container = document.getElementById("p-personal");
| |
| if (container) {
| |
| container.parentNode.insertBefore(button, container);
| |
| }
| |
|
| |
| var isLightTheme = localStorage.getItem("isLightTheme");
| |
| if (isLightTheme === "true") {
| |
| document.documentElement.classList.add('light');
| |
| } else {
| |
| document.documentElement.classList.remove('light');
| |
| }
| |
| });
| |
|
| |
| function toggleTheme() {
| |
| var isLightTheme = document.documentElement.classList.toggle('light');
| |
| localStorage.setItem("isLightTheme", isLightTheme);
| |
| }
| |