Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. function academia(){
  2.  
  3. function makeNews(res){
  4. var soup = $(res.responseText).find('div [class~="tileImage"] h2');
  5.  
  6. soup.each(function(e){
  7.  
  8. var title = $(this).find('a').text();
  9. var link = $(this).find('a').attr('href');
  10. var noticie = '<table class="noticias"><tr><td class="noticia_link" rowspan="3"><a href="http://www.fab.mil.br' + link + '" target="_blank">' + title + '</a></td></tr></table>';
  11.  
  12. $('#news-list').append(noticie);
  13. $('.loading-alert').hide();
  14. $('.news-list-title').css('visibility','visible');
  15.  
  16. });
  17. }
  18.  
  19.  
  20. $.ajax({
  21. url: 'http://www.fab.mil.br/noticias/tag/SANTOS_DUMONT',
  22. type: 'GET',
  23. success: makeNews
  24. });
  25. }
  26.  
  27.  
  28. $(function() {
  29. academia();
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement