I am pulling info from an XML file and the div class="long"
works great but the anchor doesn't work or doesn't show up in IE. It works in all other browsers but NOT IE? any thoughts?
$(this).find('desc').each(function()
{
var url = $(this).find('url').text();
var long = $(this).find('long').text();
$('<div class="long"></div>').html(long).appendTo('#link_'+id);
$('<a href="http://'+url+'"</a>').html(url).appendTo('#link_'+id);
});