La idea es usar el api de busqueda, esta parte del proceso ya la tengo. Ahora estoy tratando de remplazar o hacer que entre el nuevo tweet despues de determinado tiempo.
Aca mi codigo:
Código HTML:
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script>$(document).ready(function(){ // Run function every 5secs setInterval('loadTweet()', 5000); } var $test = '<li><div class="name"> <a href="http://twitter.com/lejaguar" alt="lejaguar (le wild mike)">lejaguar (le wild mike)<a/><img src="http://a0.twimg.com/profile_images/1858607815/image_normal.jpg" width="48px" height="48px" class="rounded-img"></div><p class="tweet"> RT @<a class=" " href="http://twitter.com/Noedrus">Noedrus</a>: Todos votamos por <em>AMLO</em> y no nos dimos cuenta<br ></p></li>'; function loadTweet() { $("#tweets li").first().before($test); } </script> </head> <body> <ul id="tweets"> <li></li> </ul> </body> </html>