var template = {"url":"http://jsbin.com/ewune","html" : "<!DOCTYPE html>\n<html lang=\"en\">\n<body>\n<div>jQuery <\/div>\n<p>is the <\/p>\n<ul>\n    <li>best!<\/li>\n<\/ul>\n<script src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.3.2\/jquery.min.js\"><\/script>\n<script> \n(function($){\n    \/\/ Alerts jQuery is the best!\n    alert($('div, p, ul li').text());\n \n    \/\/ Inefficient way. Alerts jQuery is the best!\n    alert($('div').text() + $('p').text() + $('ul li').text());\n})(jQuery);\n<\/script>\n<\/body>\n<\/html>","javascript":""}
