18 lines
806 B
JavaScript
18 lines
806 B
JavaScript
$(document).ready(function () {
|
|
$('#cartIcon').on('click', function (e) {
|
|
e.preventDefault();
|
|
$('#viewCartOptions').modal('show');
|
|
});
|
|
|
|
$('#purchaseRequestButton').on('click', function () {
|
|
window.location.href = '@Url.Action("ItemCart", "ItemMgmt", new { TypeOfRequest = "__typeOfRequest__" })'.replace("__typeOfRequest__", 2);
|
|
});
|
|
|
|
$('#internalRequestButton').on('click', function () {
|
|
window.location.href = '@Url.Action("ItemCart", "ItemMgmt", new { TypeOfRequest = "__typeOfRequest__" })'.replace("__typeOfRequest__", 1);
|
|
});
|
|
|
|
$('#specialRequestButton').on('click', function () {
|
|
window.location.href = '@Url.Action("ItemCart", "ItemMgmt", new { TypeOfRequest = "__typeOfRequest__" })'.replace("__typeOfRequest__", 3);
|
|
});
|
|
}); |