Quote:
Originally posted by Henry
wow etLux love the autofit popup now i dont have to serize them all!
oh and there is a sorta way you can make those picture loads without having to reload the whole page is by using iframe's have the image load in the iframe instead of on the whole page it's easy to configure just some basic html.
|
There are a number of ways to do this. Another simple way is to use a cell in a table, and script to rewrite the innerHTML.
The basic technique for that (though this is actually a menu, of course) can be garnered from the code of this script:
http://www.codelifter.com/main/javas...zingmenu1.html
Specifically, note this function:
function boxOn(which,message){
if (document.all||document.getElementById){
which.className='BorderOn'
if (document.getElementById) {document.getElementById("Message").innerHTML = message}
else {Message.innerHTML = message}
}
}