Test Now Playing

Test Last 10 Songs Played on Lush 99.5FM

by ZZ Ng

HTML

<!doctype html>
<html lang="en">
	<head>
		<meta charset="utf-8" />
		<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
                <script src="http://apps.radioactive.sg/lastsongsplayed.php?stationId=995fm&callback=myfunction"></script> 
		
                <script>
                $(document).ready(function() {
  $.getJSON("http://apps.radioactive.sg/lastsongsplayed.php?stationId=995fm&callback=myfunction", function(data) {
    var html = ''; // declare the variable that will be used to store the information
    var parsedData = JSON.parse(data);

    $.each(parsedData.myfunction, function(i, item) {
      {
        html += 'Song: ' + item.song.track + ', Artist: ' + item.song.artist + ', Time: ' + item.playedtime + '';
      } //
    }); //
    $('.nowplaying').append(html); // print the information to the document with a span class of 'nowplaying' and use the jQuery append method to insert the information.
  }); // close JSON call
}); // close document ready function
                </script>
		
	</head>
	<body>
		<span class="nowplaying"></span>
	</body>
</html>