Advertisement
Laxtour

Untitled

Jan 9th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. * Created by laxtour on 08/01/2016.
  3. */
  4.  
  5. $(document).ready(function(){
  6. $('.btn-update-item').on('click',function(e){
  7. e.preventDefault();
  8. var id = $(this).data('id');
  9. var href = $(this).data('href');
  10. var quantity = $('#product_'+id).val()
  11.  
  12. window.location.href = href + "/" + quantity
  13. });
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement