|
Prev: Mind.html version of MindForth updated 2008 April 22
Next: FAQ Topic - How do I communicate between frames in a web browser? (2008-04-23)
From: bush on 23 Apr 2008 00:39 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 23 Apr 2008 03:34
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 |