hello im using this code to load content from another php file.
$(document).ready(function(){
setInterval(function(){
$('.live-stream ul').each(function(){
$(this).load('tx.php');
});
}, 1000);
});
this works correctly but i want script to fadeIn each "li" when a new record added, anyone?
the thing i want to do is something like facebook's live user action feed that on the right top of facebook home
display:none
oropacity:0
in the CSS and do a regular jQuery animation. – Verdin