Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $(".question").click(function() { $(this).tooltip(); });
- $('#hideCustom').hide();
- $('#amount').change(function () {
- var val = $(this).val();
- if (val == 'Other Donation') {
- $('#hideCustom').show();
- } else {
- $('#hideCustom').hide();
- }
- });
- $('#submit').click(function() {
- var amt = $('#otherDonation').val();
- if(amt < 0.01){
- var amt = 15.00;
- }
- $('#customAmount').attr("value", amt);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement