I am trying to count the number of li elements on a remote page, called file.xml. What am I doing wrong? Sorry for the easy question but I just can't figure this out.
Javascript:
<script>
$(document).ready(function(){
$.get('/file.xml', function(data)
{
var allslides = $(data).find('li'),
var slidenumber = $allslides.length;
alert(slidenumber);
});
});
</script>
HTML (contents of file.xml):
<body>
<li><h2>Headline1</h2><span class="desctext">Description</span></li>
<li><h2>Headline2</h2><span class="desctext">Description</span></li>
<li><h2>Headline3</h2><span class="desctext">Description</span></li>
</body>