﻿$(document).ready(function() {
    $(".CartDeleteButton").click(function() {
        return confirm("Are you sure you wish to remove this item?");
    });
});