echo json and HTML for jsFiddle

this gives a simple example to use the jsFiddle echo services in HTML and JSON.

by Norbert Wilms

HTML

<div id="ajax-json"></div>
<div id="ajax-html"></div>
<div id="test"></div>

JavaScript

$(function() {
    $.get("/eche/html/",function(data){ alert(data) });
});