I've seen a few examples of similar situations on here, but haven't found anything with my specific problem & I just can't seem to get it. Here is the code:
$(document).ready(function()
{
$.ajax({
type: "GET",
url: "linwood.xml",
dataType: "xml",
success: parseXml
});
function parseXml(xml){
$(xml).find("loaction1").each(function(){
if($(this).find("Available").text() == 'Yes'){
$("#location1").append("<li><p><u><h4>Unit " + $(this).find("Unit").text() + " [" + $(this).find("Price").text() + "]:</h4></u>" + $(this).find("Description").text() + "<div class='small'>");
$(this).find("Href").each(function(){
$("#location1").append("<a href='" + $(this).text() + "' rel='lightbox' ><img width='45px' height='35px' src='" + $(this).text() + "' /></a>");
});
$("#location1").append("</div></p></li>");
}
});
}
});
Basically what I am trying to do is produce list items (li) for the ul with the id 'location1'. So far what I have is the first line displaying properly. However I have learned that .append closes all open tags. This wouldn't be a problem, but for:
$(this).find("Href").each(function(){
I need the href the xml gives for each 'a' tag. I am thinking of adding them into an array and include that array in part of the '.append' section, but each li has a different number of links and I am not quite sure how make them read in then display properly. The end result HTML should look something like this:
<ul id="location1">
<li>
<p>
<u><h4>Unit 1 [$600]</h4><u>
This unit is available for purchase
<div class='small'>
<a href='#' rel='lightbox'><img src='#' /></a>
<a href='#' rel='lightbox'><img src='#' /></a>
<a href='#' rel='lightbox'><img src='#' /></a>
</div>
</>
</li>
<li>
<p>
<u><h4>Unit 2 [$400]</h4><u>
This unit is available for purchase
<div class='small'>
<a href='#' rel='lightbox'><img src='#' /></a>
</div>
</>
</li>
</ul>
Does anyone think they can help me out? Thanks in advance!