﻿$(document).ready(function() {
    initProductList();
});

function initProductList() {
    $(".productLevel1").change(function() {
        strSelectedProductId = $(this)[0].value; // get the selected product id
        var url = "/Product/GetChildProducts/" + strSelectedProductId;
        
        $.getJSON(url, null, function(data) {
            alert(data);
        });
    })
}
function removeProductFromList(id) {
    $('#prodContainer_' + id).slideFadeToggle(function() {
        $('#prodContainer_' + id).remove()
    });
}

function getAddProduct() {
    StartLoading();
    $.get("/Product/Add/applicantid", function(data) {
        $("#products").children(":first").before(data);
        $("#products").children(":first").slideToggle();
        StopLoading();
    });
}
