vote up 0 vote down star
xmlDoc.load("cd_catalog.xml")

var cd=xmlDoc.getElementsByTagName("CD");
var id_set=1;
var id=xmlDoc.getElementsByTagName("ID"+id_set);

i=0;

function next()
{
if (i<id.length-1)
  {
  i++;
  display();

  }
}


function display()
{
document.write('<div class="dd">')
    	document.write('<div class="blue" style="WIDTH:')
    	document.write(cd[0].getElementsByTagName("ID"+id_set)[i].childNodes[0].nodeValue)
    	document.write('"></div>')

document.write('</div>')

}


}
</script>

	<script type="text/javascript"> display() 	</script>


	<br><input type="button" onclick="next()" value="next" ID="Button2" NAME="Button2"/>

I saw related question, but not sure that helps.. I added the next() function and the browser hangs as if it is loading something, never does. Without the next() call the display function works. I am trying to do a variation of this.

flag

59% accept rate

1 Answer

vote up 4 vote down check

That related queston does help. You can't use document.write() after the document has finished loading. See the answer to that other question for how to replace document.write().

link|flag
I get it now, let me try again, thanks. – Tommy Mar 5 at 21:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.