var template = { url : "http://jsbin.com/ulune", html : "<!DOCTYPE html>\n<html lang=\"en\">\n<body>\n<div>javascript<\/div>\n<div><span class=\"jQuery\">jQuery<\/span><\/div>\n<div>javascript<\/div>\n<div><span class=\"jQuery\">jQuery<\/span><\/div>\n<div>javascript<\/div>\n<div><span class=\"jQuery\">jQuery<\/span><\/div>\n<script src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.3.2\/jquery.min.js\"><\/script>\n<script>\n(function($){ \n\n\/\/ Select all div's, remove all div's that have a child element with class=\"jQuery\"\nalert($('div:not(:has(.jQuery))').text()); \/\/ Alerts combined text of all div's\n\n\/\/ Select all div's, remove all div's that are odd in the set (count starts at 0) \nalert($('div:not(:odd)').text()); \/\/ Alerts combined text of all div's\n\n})(jQuery);\n<\/script>\n<\/body>\n<\/html>", javascript : "" };