source: Dev/trunk/src/client/dojo/tests/_base/queryPortability.html

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 552 bytes
Line 
1<html>
2        <head>
3                <title>look ma! query, but no Dojo!</title>
4
5                <!-- we pull in query.js, but not the rest of Dojo -->
6                <script type="text/javascript" src="../../_base/query.js"></script>
7
8                <!-- test it out! -->
9                <script type="text/javascript">
10                        $ = acme.query;
11                        window.onload = function(){
12                                alert($("p.stranger")[1].innerHTML + " stranger");
13                        }
14                </script>
15        </head>
16        <body class="tundra">
17                <p>howdy!</p>
18                <p class="stranger">howdy!</p>
19                <p class="stranger">howdy</p>
20                <p>howdy!</p>
21                <div>thinger</div>
22                <!-- ... -->
23        </body>
24</html>
Note: See TracBrowser for help on using the repository browser.