[AUSTIN THEME] - Create cart pop up when item is added?

How would I go about creating let's say a cart drawer or make a cart popup where the user can either continue shopping or go straight to checkout?
User clicks add to cart --> Popup "continue shopping" or "go to checkout"
Tags:
1 comment
1) Change the HREF value of the button from
https://www.--------.com/cart/add/77584833/
tojavascript:;
.2) Create a modal popup screen that has 2 buttons: 1) Continue Shopping; 2) Go to Checkout.
3) Create a javascript function that:
a) Adds the product to the cart thru Ajax;
b) Calls that modal window to pop out when the "add to cart" button is clicked.