25 lines
576 B
HTML
25 lines
576 B
HTML
<html>
|
|
<head>
|
|
<title>look ma! query, but no Dojo!</title>
|
|
|
|
<!-- we pull in query.js, but not the rest of Dojo -->
|
|
<script type="text/javascript" src="../../_base/query.js"></script>
|
|
|
|
<!-- test it out! -->
|
|
<script type="text/javascript">
|
|
$ = acme.query;
|
|
window.onload = function(){
|
|
alert($("p.stranger")[1].innerHTML + " stranger");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body class="tundra">
|
|
<p>howdy!</p>
|
|
<p class="stranger">howdy!</p>
|
|
<p class="stranger">howdy</p>
|
|
<p>howdy!</p>
|
|
<div>thinger</div>
|
|
<!-- ... -->
|
|
</body>
|
|
</html>
|