April 30, 201016 yr Hi Guys, Does anyone know how I can get the time of a twitter feed that I am already bringing into my page... I am using jtwitter jquery plugin at the moment, <script src="js/jtwitter.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $.jTwitter('simonelsbury', 3, function(data){ $('#posts').empty(); $.each(data, function(i, post){ $('#posts').append( '<div class="post">' +' <div class="txt">' +' <p> ' + post.text + '<br />' + '<em class="smaller">Sent from my iPhone @ 7.24pm</em>' + '</p>' +' </div>' +'</div>' ); }); }); }); </script> Now this line: + '<em class="smaller">Sent from my iPhone @ 7.24pm</em>' needs to be autogenerated by twitter... any ideas? I was thinking that it should be something like post.time or something - but no idea... GRRRR lol HELP!! cheers Edited April 30, 201016 yr by terydinho
Create an account or sign in to comment