I've got an xml file that I'm placing into a table, one field at a time with Java. I can happily place the values as string, but can't get the syntax correct to place as a URL.
Simple string:
Attempt at href:
A quote is the epiphany of intelligence
Simple string:
Code:
document.write('<td>' + results[i].getAttribute("age") + '</td>');
Attempt at href:
Code:
document.write('<td>' + "<A href=results[i].getAttribute("html")>" + '</td>');
A quote is the epiphany of intelligence