|
following code does not work for me.
xmlDoc=document.implementation.createDocument(""," ",null);
xmlDoc.async=false;
xmlDoc.onload= Test();
xmlDoc.load("books.xml");
function Test()
{
alert('tested');
}
If any one having any idea then please give me a chance of thanks.
|