Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- // Follow
- $('.follow').click(function(){
- $('.l').html("Seguindo");
- var id_of = $('.idFollow').val();
- var id_to = $('.add').attr("attr-c");
- var follow = $.ajax({
- url:"/perguntando.com/auth/ajax/processo.php",
- type:"POST",
- data:{ action:"follow", id_of: id_of, id_to: id_to },
- });
- follow.done(function(e){
- $('.invite').html(e);
- });
- });
- // Unfollow
- $('.unfollow').click(function(){
- $('.l').html("Seguir");
- var id_of = $('.idFollow').val();
- var id_to = $('.add').attr("attr-c");
- var unFollow = $.ajax({
- url:"/perguntando.com/auth/ajax/processo.php",
- type:"POST",
- data:{ action:"unfollow", id_of: id_of, id_to: id_to },
- });
- unFollow.done(function(e){
- $('.invite').html(e);
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement