Sample Test to use the echo json and HTML service for jsFiddle
this gives a simple example to use the jsFiddle echo services in HTML and JSON
HTML
<span id='imtitle'/>
JavaScript
$(document).ready(function() {
$.ajax({
url: 'http://api.fixer.io/latest?base=SGD',
dataType: 'json',
success: function (data)
{
alert(data);
}
});
});