- $j(function () {
- // hide the part of the form with course fee
- var courseFee = $j('#program-course-fee');
- courseFee.hide();
- // bind a click handler to it
- $j('#program-type').click(function (e) {
- if ($j(e.target).is("li.credit")) {
- // show the rest of the form
- courseFee.slideDown(200);
- }
- else {
- courseFee.slideUp(200);
- }
- });
- });