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

Wiki:Create: Difference between revisions

From JackSucksAtLife Wiki
Content added Content deleted
(Created page with " <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>")
 
No edit summary
Line 1: Line 1:
<input type="text" id="urlInput" placeholder="Enter URL">
<input type="text" id="urlInput" placeholder="Enter URL">
<button onclick="redirectToInputURL()">Go</button>
<button onclick="redirectToInputURL()">Go</button>



Revision as of 21:55, 23 August 2023

<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.