ua.html revision 92810c498455dfca3072cc0c6d3a49b3a51e9b4c
<html>
<head>
<title>YUI 3.0</title>
<base href="http://localhost/src/yui3/sandbox/yui/ua.html" />
<style>
.dd {
padding-left: 20px;
padding: 5px;
margin: 2px;
cursor: move;
background-color: red;
width: 400px;
height: 100px;
zoom: 1;
}
#ddtarg {
top: 200px;
}
</style>
<body>
<input id="addButton" type="button" value="Add link" />
<div id="demo" class="dd"></div>
<div id="ddtarg" class="dd"></div>
<script type="text/javascript">
YUI({ }).use('node', 'dump', function(Y) {
var node = Y.get('#demo');
// var ua = [];
// ua[ua.length] = k;
// });
// ua.sort();
Y.one('#ddtarg').set('innerHTML', navigator.userAgent);
});
</script>
</body>
</html>