diff --git a/global.js b/global.js index 9c46c78..f40f093 100644 --- a/global.js +++ b/global.js @@ -74,11 +74,15 @@ document.addEventListener("DOMContentLoaded", function () { $("button").each(function () { if ($(this).text().startsWith("Check")) { $(this).hide(); - } else if ($(this).text().startsWith("Previous page")) { - $(this).hide(); } }); + $("input").each(function () { + if ($(this).val().startsWith("Previous page")) { + $(this).hide(); + } + } + $("form").each(function () { const form = $(this);