anavas

Untitled

Jun 13th, 2017
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $('label').click(function() {
  2.            var labelID = $(this).attr('for');
  3.            if(labelID=='preauth_dx') {
  4.                 console.log(labelID);
  5.                 $('#panel-body-dx').load('template.preauth.dx.php?rand='+Math.random(),function(result, status){
  6.                     $('#con-close-modalDX').modal({show:true});
  7.                 });
  8.            } else if(labelID=='preauth_cpt') {
  9.                 console.log(labelID);
  10.                 $('#panel-body-cpt').load('template.preauth.cpt.php?rand='+Math.random(),function(result, status){
  11.                     $('#con-close-modalCPT').modal({show:true});
  12.                 });
  13.                
  14.            } else {}
  15.     });
Add Comment
Please, Sign In to add comment