Your script is broken, makes the page reload infinitely, also as nor Hserver nor Default works for me, I've set it to Oserver. This may be due to an issue with how the Kissanime website handles changes to the server selection. To address this problem, you can use a different approach that avoids triggering the change event. Here's how I fixed it for ya, simply add a delay to it:
(function() {
'use strict';
// Delay the script execution to ensure that the page is fully loaded
setTimeout(function() {
// Get the select element with id "selectServer"
var selectServer = document.getElementById("selectServer");
if (selectServer) {
// Set the hserver option as the selected option
for (var i = 0; i < selectServer.options.length; i++) {
if (selectServer.options[i].getAttribute("sv") === "oserver") {
selectServer.selectedIndex = i;
break;
}
}
}
}, 1000); // Adjust the delay if needed
})();
Your script is broken, makes the page reload infinitely, also as nor Hserver nor Default works for me, I've set it to Oserver. This may be due to an issue with how the Kissanime website handles changes to the server selection. To address this problem, you can use a different approach that avoids triggering the change event. Here's how I fixed it for ya, simply add a delay to it: