This repository has been archived on 2023-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
newtabber/template/footer.html

26 lines
820 B
HTML

</section>
<section>
<form id='sform' method='post' action='https://s.rdsm.ca/search'>
<input type='text' id='search' name='q' placeholder='Search' autocomplete='off'>
</form>
</section>
</main>
<script>
document.addEventListener('DOMContentLoaded', () => {
const s = document.getElementById('search');
document.getElementById('sform').addEventListener('submit', (e) => {
let term = s.value;
if (/^[^\s]+\.(com|net|org|ca|us|io|ai|cr|gov)(\/[^\s]*)?$/.test(term)) {
e.preventDefault();
if (!/^https?:\/\//.test(term)) {
term = 'https://' + term;
}
window.location.replace(term);
}
});
s.focus();
});
</script>
</body>
</html>