Guest User

Untitled

a guest
May 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. var showOrderDetails = function(){
  4. // orderDetailId: $(this).attr('href').match(/([0-9]+)/)[1];
  5.  
  6. $.getJSON($(this).attr('href'), function(json){
  7. $('#json').text(json);
  8. });
  9. $(this).blur();
  10. return false;
  11. };
  12.  
  13. $('th.customer a').click(showOrderDetails);
  14. });
Add Comment
Please, Sign In to add comment