Guest User

Untitled

a guest
Feb 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. var button = $(event.relatedTarget) // Button that triggered the modal
  2. var product_id = button.data('product') // Extract info from data-* attributes
  3. var company = button.data('company') // Extract info from data-* attributes
  4. var modal = $(this)
  5.  
  6. $.get( "/products/enquiry_form/"+product_id, function( data ) {
  7. modal.find('.modal-title').text('New enquiry to ' + company)
  8. modal.find('.modal-data').html( data );
  9. });
  10. })
  11.  
  12. $('.enquiry_form_submit').on('click', function(){
  13. $('.enquiry_form').submit();
  14. });
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment