From: bush on
hi budies! i have an assignment....how to change the header and footer
of an internet explorer dynamically using java script.if any one of u
have any idea about it plz guide me.
From: Erwin Moller on
bush schreef:
> hi budies! i have an assignment....how to change the header and footer
> of an internet explorer dynamically using java script.if any one of u
> have any idea about it plz guide me.

Hi,

1) Place them both in a div. Name then eg 'headerdiv' and 'footerdiv'.
2) Get the div via commands like:
var myHeader = document.getElementById('headerdiv');
3) and then change the innerHTML of that div.
eg:
myHeader.innerHTML = 'new header';

Erwin Moller