Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Wiki:Create

From JackSucksAtLife Wiki
Revision as of 21:55, 23 August 2023 by Jacksucksatlife (talk | contribs)

<input type="text" id="urlInput" placeholder="Enter URL">

   <button onclick="redirectToInputURL()">Go</button>
   <script>
       function redirectToInputURL() {
           var inputUrl = document.getElementById("urlInput").value;
           if (inputUrl.trim() !== "") {
               window.location.href = "http://wiki.jsal.org/wiki/" + encodeURIComponent(inputUrl);
           }
       }
   </script>
Cookies help us deliver our services. By using our services, you agree to our use of cookies.