5 lines
177 B
JavaScript
5 lines
177 B
JavaScript
|
document.getElementById('search-form').addEventListener('submit', function(event) {
|
||
|
event.preventDefault();
|
||
|
alert('Search functionality will be implemented here!');
|
||
|
});
|