var chars = jQuery.browser.safari
&& parseInt(jQuery.browser.version) < 417 ?
"(?:[\\w*_-]|\\\\.)" :
"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",
quickChild = new RegExp("^[/>]\\s*(" + chars + "+)"),
quickID = new RegExp(
"^(" + chars + "+)(#)(" + chars + "+)"
),
quickClass = new RegExp("^([#.]?)(" + chars + "*)");
<script src="./js/jquery-test.js"></script> <script>var jQTest = jQuery.noConflict(true);</script> <script src="./js/jquery-1.1.3.js"></script>
function time(name, fn){
setTimeout(function(){
var t = (new Date()).getTime();
fn();
var result = (new Date()).getTime() - t;
document.getElementsByTagName("pre")[0]
.innerHTML += name + ": " + result + "ms\n";
}, 13);
}