Skip to content

ThirteeNov

My personal blog about coding and internet

Menu
  • About me
  • About Zofia Kreasi
  • Cart
  • Checkout
  • Making an airplane game from scratch in Unity
  • My account
  • Privacy Policy
  • Privacy Policy – zkLeaderboard
  • Sample Page
  • Shop
  • Tutorials on Learning JavaScript
  • ZKAccounts – Privacy Policy
Menu

How to type something then it should redirect us to another page in HTML and JavaScript

Posted on March 12, 2021March 12, 2021 by Habibie

I made this tutorial to answer a question asked to me about how to make something that if we type a word than it redirects us to some page.

So I do this in HTML and JavaScript, and I hope I did not get it wrong. Basically when we type a word in an input field, we check the typed word, is it a specific word that we want it to redirect us to some page or not… If it is the word, then JavaScript can redirect us by location.href = “some page or url…” That’s all.

PS: Sorry I don’t know why my microphone volume is so low.

Here is the code:

<!DOCTYPE html>
<html>
	<head>
		<title>
		</title>
	</head>
	<body>
		<input placeholder="Type something" onkeyup="checkTheWord()" id="aword">
		<script>
		
			function checkTheWord(){
				var aword = document.getElementById("aword").value;
				if(aword == "google")
					location.href = "https://google.com";
				else if(aword == "youtube")
					location.href = "https://youtube.com";
			}
		
		</script>
	</body>
</html>
Post Views: 277
ciihuy2020

Welcome!

  • My YouTube Channel
  • My GitHub Page
  • About me

Categories

  • 3DVista
  • Android
  • Apache
  • C#
  • Cordova
  • Electron & Node JS
  • HTML5, CSS & JavaScript
  • iOS
  • Let's Make Unity Games
  • Misc
  • Photoshop
  • PHP
  • Python
  • Uncategorized
  • Unity
  • WordPress

Recent Posts

  • Make objects like wires and cables easily in Unity using Ciihuy Curved Mesh
  • [SOLVED] Can’t Add Custom Domain to Blogger After Losing CNAME Verification
  • iOS App Icon Generator by CiihuyCom
  • Advanced Blinking Marker Script to show objects position in your game canvas
  • Ciihuy Images Merger – Fast & Easy Online Image Combiner
© 2025 ThirteeNov | Powered by Superbs Personal Blog theme