﻿$(function()
{
    $(".search-btn").click(function(evt)
    {
        var query = $("#txtQuery").val();
        if (query.length > 0)
            window.location = "/Search.aspx?query=" + query;
    });
    $("#txtQuery").keydown(function(evt)
    {
        if (evt.keyCode == 13)
        {
            var query = $(this).val();
            if (query.length > 0)
                window.location = "/Search.aspx?query=" + query;

            evt.preventDefault();
        }
    });
});
