﻿$(document).ready(function () {
    $("input[id*='searchText']").keypress(function (e) {
        if (e.which == 13) {
            window.location = "/search?q=" +  $(this).val();
        }
    });
});
