Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3.     $('#plan').change(function() {
  4.         newPrice = $('#plan option:selected').val();
  5.         $('#planPrice').text('$' + newPrice);
  6.         $('input[name=amount]').val(newPrice);
  7.     });
  8. });
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement