function flushFeed(type, containerId) { $.get("https://csapp.curtin.edu.my/alumni/ajax/feed.php?a="+type, function(data) { $("#"+containerId).html(data); }); } $(document).ready( function() { flushFeed("events", "eventfeed"); });