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.

12 lines
334 B

  1. $(function () {
  2. $("#period-controls :input").change(function() {
  3. if (this.value == "monthly") {
  4. $("#s-price").text("$20");
  5. $("#p-price").text("$80");
  6. }
  7. if (this.value == "annual") {
  8. $("#s-price").text("$16");
  9. $("#p-price").text("$64");
  10. }
  11. });
  12. });