I don't get this...
EDIT Scrub that - I've got it fixed. When comparing the contents of an element, IE expands all URLS in links to absolute URLS...
document.getElementById(someID).innerHTML = document.getElementById(someOtherID).innerHTML
if (document.getElementById(someID).innerHTML==document.getElementById(someOtherID).innerHTML)
{
alert('the same');
}
else
{
alert('different');
}Nice and simple - put the contents of one div into another, and then compare the two. Fine. So why does Firefox say they are the same but IE6 claims they are different?EDIT Scrub that - I've got it fixed. When comparing the contents of an element, IE expands all URLS in links to absolute URLS...
