Hi I want to change the border style onmouseover. I can change background like this:
html:
but if I change "background" to "border-style" it doesn't work. I want change border-style from inset to outset. The border style is set to inset by my style sheet. I know I've seen this done before. All help will be greatly appreciated!
Glen
Code:
<script>
function changeBorder(FieldName)
{
document.all[FieldName].style.background = "skyblue";
}
function changeBorder1(FieldName)
{
document.all[FieldName].style.background = "lightblue";
}
</script>
Code:
<div id = "logo1" name = "logo1" onmouseover="changeBorder('logo1')" onmouseout="changeBorder1('logo1')">
Glen