Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1.  
  2.  
  3. function getLastNews(){
  4.  
  5.  
  6. var css = '.bloc_news { display: block; background-color: #2d515d; margin: 5px 0; padding: 5px; min-height: 80px; color: #fff;} .bloc_news .avatar { width: 80px; height: 80px; float: left; margin-right: 5px; } .bloc_news .pin { float: left; margin-left: -90px; margin-top: -10px; }';
  7. var style = jQuery('<style type="text/css"></style>');
  8. style.html(css);
  9. style.appendTo(jQuery('body'));
  10.  
  11. jQuery.ajax({
  12. url : 'http://otaku-attitude.net',
  13. success : function(xml){
  14.  
  15. var bn = jQuery(xml).find('.bloc_news').eq(0);
  16. console.log("Bn ?");
  17. console.log(bn);
  18.  
  19. bn.attr('href','http://www.otaku-attitude.net/'+bn.attr('href'));
  20.  
  21. var generalBox = jQuery('<div class="general_box"></div>');
  22. generalBox.append('<h3><img src="http://forum.otaku-attitude.net/public/style_images/v3/comment_new.png" alt="Icône"> Derniere actualité</h3>');
  23. generalBox.append(bn);
  24. jQuery('.general_box').eq(0).before(generalBox);
  25.  
  26.  
  27. }
  28. });
  29.  
  30. }
  31.  
  32.  
  33. getLastNews();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement