You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
616 B

$(function () {
$("#period-controls :input").change(function() {
if (this.value == "monthly") {
$("#supporter-price").text("$5");
$("#business-price").text("$20");
$("#business-plus-price").text("$80");
}
if (this.value == "annual") {
$("#supporter-price").text("$4");
$("#business-price").text("$16");
$("#business-plus-price").text("$64");
}
});
$('[data-help]').tooltip({
html: true,
title: function() {
return $("#" + this.dataset.help).html();
}
});
});