(function() { $('#search-order').on('click', function() { var val = $('#search-order-input').val(); if (!val) { Toastify({ text: "Please enter Order Number / Email", duration: 3000, position: 'center' }).showToast(); return; } window.location.href = '/track-order.html?q=' + val; }); $(document).ready(function() { $('#search-order-input').on('keyup', function(e) { if (e.keyCode === 13) { $('#search-order').click(); } }); }); })();