Okay so I have the following code:
function() { $(\"ul#postbit\").load(\'load.php\').fadeIn(\"slow\"); }, 3000);
What I am trying to achieve i
You should check out the jQuery API. Here's the API for AJAX: http://api.jquery.com/category/ajax/
$.ajax({ url: 'load.php', success: function(data) { $("ul#postbit").prepend(''+ data +''); } });