﻿$(document).ready(function () {

    $('.ddlFilter').bind("change keyup", function () {
        // set the window's location property to the 
        // value of the option the user has selected
        if ($(this).val() != "default") {
            $('.ddlFilter').hide();
            $('#LoadingFilterMsg').removeClass('hidden');
            window.location = $(this).val();
        }
    });

    $('.ddlManufacturer').bind("change keyup", function () {
        // set the window's location property to the 
        // value of the option the user has selected
        if ($(this).val() != "default") {
            window.location = $(this).val();
        }
    });


    $('.removeFilterBtn').bind("click", function () {
        removeParameter($(this).attr('id'));
    });

});
