Associate
location is on www.djtempest.co.uk
basically when you move your mouse over the buttons a small text description comes up underneath. It works fine in Firefox.
Also just as a matter of interest what is it about the site thats making IE display its stupid security warning about active content? Is it the scripts im using or just the fact it has an iFrame? And is there a way around it?
basically when you move your mouse over the buttons a small text description comes up underneath. It works fine in Firefox.
Code:
// Change Description
function changeDesc(desc){
document.getElementById('description').innerHTML = desc;
}
// Change The Webpage
function navigation(url){
frames['content'].location.href=url;
}
....
<img src="images/table_right_buttons_5.gif" alt="Dates" width="61" height="28" border="0" onClick="navigation('dates.php')" onMouseOver="changeDesc('Dates')"></a>
Also just as a matter of interest what is it about the site thats making IE display its stupid security warning about active content? Is it the scripts im using or just the fact it has an iFrame? And is there a way around it?