Guest User

Untitled

a guest
Jun 15th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. $(function(){
  2. var mytvdbid = $(this).attr('id');
  3. var resturl = "http://localhost:9090/api/tvdb/episode/"+mytvdbid+"/?season_number=2&ep_number=1";
  4.  
  5. $('#tvnav ul li a').on('click', function(e){
  6. e.preventDefault();
  7. $.ajax({
  8. dataType: "json",
  9. url: resturl,
  10. username: "flexget",
  11. password: "pass",
  12. success: function(data){
  13. var title = data.episode_name;
  14. var poster = data.image;
  15.  
  16. var cdiv = $('#imdbcontents');
  17.  
  18. var thehtml = "<img src=\""+poster+"\" class=\"floatright\">";
  19. thehtml = thehtml + "<h2>"+title+"</h2>";
  20. thehtml = thehtml + "<p><a href=\""+url+"\" target=\"_blank\">View on IMDb &rarr;</p>";
  21.  
  22. cdiv.html(thehtml);
  23. }
  24. });
  25. });
  26.  
  27. });
Add Comment
Please, Sign In to add comment