Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(".login_get_button").click(function(){
  2.  
  3. var siteurl = $(this).attr('alt');
  4. var sitenetwork = $(this).attr('title');
  5.  
  6. $.getJSON("com.Remote.php?jsoncallback=?",{action: "getLoginRemote", url: siteurl, network: sitenetwork}, function(data){
  7.  
  8. //alert(data[0]);
  9.  
  10. $(this).after('<span class="sbtitle">'+data[0]+'</span>');
  11.  
  12. })
  13.  
  14.  
  15. })
Add Comment
Please, Sign In to add comment