Side navigation
Ticket #4463: example.html
File example.html, 0.2 KB (added by yoniros, March 31, 2009 11:33PM UTC)
Exanple - simple element selector
<html>
<head>
<script src="jquery-1.3.2.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
alert($("div"));
});
</script>
</head>
<body>
<div>test</div>
</body>
</html>
Download in other formats:
Original Format
File example.html, 0.2 KB (added by yoniros, March 31, 2009 11:33PM UTC)
Exanple - simple element selector
<html>
<head>
<script src="jquery-1.3.2.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
alert($("div"));
});
</script>
</head>
<body>
<div>test</div>
</body>
</html>