Guest User

Untitled

a guest
May 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <div class="div-biography" style="overflow:scroll; height:480px;">
  2.  
  3. <ul class="header">
  4. <li><button class="go-back-btn-bio" type="button" name="button" id="your-playlist"><i class="ion-ios-arrow-back"></i>GO BACK</button></li>
  5. </ul>
  6. <div class="row">
  7. <h3></h3>
  8. </div>
  9. <p></p>
  10. </div>
  11.  
  12. $("#biography").click(function(){
  13. $(".div-pesquisa").hide();
  14. $(".div-biography").show();
  15.  
  16.  
  17.  
  18. url="https://en.wikipedia.org/w/api.php?action=parse&page="+ query +"&format=json&origin=*";
  19. url=encodeURI(url);
  20. $.get(url,function(response,status){
  21. if (status=='success') {
  22. $(".div-biography .row h3").html(response.parse.title);
  23. $(".div-biography p").html(response.parse.text['*']);
  24. }
  25. });
  26.  
  27.  
  28. });
Add Comment
Please, Sign In to add comment