Side navigation
Ticket #6846: jquery-test.html
File jquery-test.html, 0.3 KB (added by gwatts, July 28, 2010 10:37PM UTC)
<html>
<head>
<title>selector test</title>
<script src="jquery-1.4.2.js" language="JavaScript"></script>
<script>
$(function() {
$('#test.id').text("id matched");
});
</script>
</head>
<body>
<p id="test.id">
If jquery supports matching tags by id when the id contains a period, this should change to "id matched"
</p>
</body>
</html>
Download in other formats:
Original Format
File jquery-test.html, 0.3 KB (added by gwatts, July 28, 2010 10:37PM UTC)
<html>
<head>
<title>selector test</title>
<script src="jquery-1.4.2.js" language="JavaScript"></script>
<script>
$(function() {
$('#test.id').text("id matched");
});
</script>
</head>
<body>
<p id="test.id">
If jquery supports matching tags by id when the id contains a period, this should change to "id matched"
</p>
</body>
</html>