Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function addCart(id, actiontest)
  2. {
  3. $.ajax({
  4.  
  5. type: "POST",
  6. url: "testscript.php",
  7. data:{
  8. id:id,
  9. action:actiontest
  10. },
  11. success: function(results){
  12. $('#results').html(results);
  13. }
  14. });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement