Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.ajaxSetup({ cache: false });
  2.  
  3.         $(document).ready(function() {
  4.             $("#review").show();
  5.             $("#process").hide();
  6.  
  7.             $("#btnProcess").click(function() {
  8.                 $("#review").hide();
  9.                 $("#process").show();
  10.             });
  11.         });
  12.        
  13.         function removeTalent(talentid) {
  14.             var strData = {};
  15.             strData.COMMAND = 'removeFromCart';
  16.             strData.talentid = talentid;
  17.             strData.ie = Math.floor(Math.random() * 101);
  18.  
  19.             $.post("/viewCart.aspx", strData, function() {
  20.                 $("#" + talentid).fadeOut("slow");
  21.             });
  22.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement