$(document).ready(function() {

$(".options__link").click(function(event) {
  event.preventDefault();
  type = $(this).attr("attr-type") || "classic";
  redirectToPromoPage(type);
});

});