
var template = {"url":"http://jsbin.com/ugoca","html" : "<!DOCTYPE html>\n<html lang=\"en\">\n<body>\n<ul>\n    <li>1<\/li>\n    <li>2<\/li>\n    <li>3<\/li>\n    <li>4<\/li>\n    <li>5<\/li>\n<\/ul>\n<ul>\n    <li>1<\/li>\n    <li>2<\/li>\n    <li>3<\/li>\n    <li>4<\/li>\n    <li>5<\/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\n\/\/ Remember that text() combines the contents of all\n\/\/ elements in the wrapper set into a single string.\nalert($('li:nth-child(2)').text()); \/\/ Alerts \"22\"\nalert($('li:nth-child(odd)').text()); \/\/ Alerts \"135135\"\nalert($('li:nth-child(even)').text()); \/\/ Alerts \"2424\"\nalert($('li:nth-child(2n)').text()); \/\/ Alerts \"2424\"\n\n})(jQuery);\n<\/script>\n<\/body>\n<\/html>","javascript":""}
