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 deleted Content added
No edit summary
Replaced content with "{{Create}}"
Tag: Replaced
 
Line 1: Line 1:
{{Create}}
<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>

Latest revision as of 21:56, 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://example.com/" + encodeURIComponent(inputUrl);
           }
       }
   </script>
Cookies help us deliver our services. By using our services, you agree to our use of cookies.