var template = { url : "http://jsbin.com/ejoti", 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>6<\/li>\n    <li>7<\/li>\n    <li>8<\/li>\n    <li>9<\/li>\n    <li>10<\/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('there are ' + $('li').length + ' elements in the set');\n\n\/\/ Get me the first element in the set\nalert($('li:first').text()); \/\/ Alerts \"1\"\n\n\/\/ Get me the last element in the set\nalert($('li:last').text()); \/\/ Alerts \"10\"\n\n\/\/ Get me the 6th element in the set, 0 index\nalert($('li:eq(5)').text()); \/\/ Alerts \"6\"\n\n})(jQuery);\n<\/script>\n<\/body>\n<\/html>", javascript : "" };