2023-08-21 17:29:52 +03:00
|
|
|
/**
|
|
|
|
* This function provides the ability for the button to toggle the dropdown error-box
|
|
|
|
* in the search page.
|
|
|
|
*/
|
2023-08-10 04:32:47 +03:00
|
|
|
function toggleErrorBox() {
|
2023-08-21 17:29:52 +03:00
|
|
|
document.querySelector('.dropdown_error_box').classList.toggle('show')
|
2023-08-10 04:32:47 +03:00
|
|
|
}
|