Preview:
document.addEventListener('DOMContentLoaded', function () {
		const input = document.querySelector('input[name="s_q_fulltext"]');
		input.addEventListener('keydown', function (event) {
			if (event.key === 'Enter') {
				event.preventDefault();
				submitSearch();
			}
		});
	});

	function submitSearch() {
		const keyword = document.querySelector('input[name="s_q_fulltext"]').value;
		const url = '<?php echo esc_url(home_url('/search')); ?>' + '?s_q_fulltext=' + encodeURIComponent(keyword || '');
		window.location.href = url;
	}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter