Skip to content

Instantly share code, notes, and snippets.

View 28kayak's full-sized avatar
💭
happy searching

Kayak 28kayak

💭
happy searching
View GitHub Profile
<input type="text" id="searchInput" placeholder="Type your search query">
<div id="searchResults"></div>
<script>
var searchInput = document.getElementById("searchInput");
var searchResults = document.getElementById("searchResults");
searchInput.addEventListener("keyup", function() {
var query = searchInput.value;