sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
552 B

<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>