/* To display a specific hospital: Change the name in quotes with the specific Title name of you hospital. This to be exactly the same as in you RSS feed file */ $(function(){ autoupdate(); //Refreshes content every 5 mins setInterval("autoupdate()", 300 * 1000); }); function autoupdate(){ $("#pubdate").empty(); $("#facility").empty(); $("#wait-time").empty(); $.ajax({ type: "GET", url: "/cpm/rss/rss_feed.xml", //Your feed URL dataType: "xml", success: function(xml){ $(xml).find("item").each(function(){ if($(this).find("title").text()=="Los Robles"){ var wait = $(this).find("description").text(); var pub = $(this).find("pubDate").text(); $("#wait-time").append(wait); $("#pubdate").append(pub); }else{ return; } }); } }); }