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
332 B

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