Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $( document).ready(function(){
- $('.women').click(function(){
- var test="hello";
- $.ajax({
- type: "POST",
- url: 'data.php',
- data: {'variable':test},
- success:function(data){
- alert(data);
- console.log(data);
- },
- });
- });
- });
Add Comment
Please, Sign In to add comment