-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathapp.js
More file actions
13 lines (12 loc) · 559 Bytes
/
app.js
File metadata and controls
13 lines (12 loc) · 559 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
document.querySelector('.menu-btn').addEventListener('click', () => document.querySelector('.main-menu').classList.toggle('show'));
document.querySelector('.search').addEventListener('click', function (event){
event.preventDefault();
var searchInput = document.getElementById('searchInput');
var searchIcon = document.getElementById('searchIcon');
if(searchInput.style.display == 'none'){
searchInput.style.display = 'block';
searchIcon.style.display = 'none';
} else {
searchInput.style.display = 'none';
}
})