diff --git a/js/rules-popup.js b/js/rules-popup.js index 515c5b71..36261b45 100644 --- a/js/rules-popup.js +++ b/js/rules-popup.js @@ -12,13 +12,14 @@ * */ -if (typeof localStorage.rulesAccepted === "undefined") { +$(window).ready(function() { + if (typeof localStorage.rulesAccepted === "undefined") { // generate a 7-character long random string captcha = Math.random().toString(36).substring(2, 9) - $("
") - .prependTo("body"); + $("body") + .prepend("
"); $("#rules-popup") .append("
lainchan rule agreement
") @@ -39,4 +40,5 @@ if (typeof localStorage.rulesAccepted === "undefined") { $(".rules-popup-form") .append("") .append(""); -} \ No newline at end of file + } +})