Side navigation
Ticket #4531: main.html
File main.html, 0.8 KB (added by fishbone, April 13, 2009 05:38PM UTC)
<html>
<head>
<script type="text/javascript" src="jquery-nightly.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({url: "test.xml", async: false, cache: false,success: function(d) {
function listEntries(target) {
$("data entry", d).each(function() {
$("#entries").append("<p>"+$(this).attr("class")+"</p>");
});
}
$("data", d).append("<entry class='c' />"); //doesn't work
$("data", d).append($("<entry class='d' />")); //works
listEntries();
}});
});
</script>
</head>
<body>
<h1>ENTRIES:</h1>
<div id="entries">
</div>
</body>
</html>
Download in other formats:
Original Format
File main.html, 0.8 KB (added by fishbone, April 13, 2009 05:38PM UTC)
<html>
<head>
<script type="text/javascript" src="jquery-nightly.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({url: "test.xml", async: false, cache: false,success: function(d) {
function listEntries(target) {
$("data entry", d).each(function() {
$("#entries").append("<p>"+$(this).attr("class")+"</p>");
});
}
$("data", d).append("<entry class='c' />"); //doesn't work
$("data", d).append($("<entry class='d' />")); //works
listEntries();
}});
});
</script>
</head>
<body>
<h1>ENTRIES:</h1>
<div id="entries">
</div>
</body>
</html>