karlokokkak

Untitled

Apr 4th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. $( document).ready(function(){
  2.     $('.women').click(function(){
  3.         var test="hello";
  4.         $.ajax({
  5.         type: "POST",
  6.         url: 'data.php',
  7.             data: {'variable':test},
  8.             success:function(data){
  9.                 alert(data);
  10.                 console.log(data);
  11.             },
  12.         });
  13.     });
  14.     });
Add Comment
Please, Sign In to add comment