Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <script type="text/javascript">
  2. $.ajaxSetup({ cache: false });
  3.  
  4. function removeTalent(talentid) {
  5. var strData = {};
  6.  
  7. strData.COMMAND = 'removeFromCart';
  8. strData.talentid = talentid;
  9. strData.ie = Math.floor(Math.random() * 101);
  10. // alert(talentid);
  11. $.post("/viewCart.aspx", strData);
  12.  
  13. alert("pre jquery click");
  14.  
  15. // remove talent from page
  16. $('#remove_' + talentid).click(function() {
  17. alert("post jquery click");
  18. $("#"+talentid).fadeOut("slow", function() {
  19. // animation complete
  20. });
  21. });
  22. }
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement