paradisewolf
Programmer
Why this function executes the first intruction but not the second one ?
If I invert their order, again only the first one in the order is executed and the second one don’t.
What am I missing here ?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<script language="javascript" type="text/javascript">
function ChangeThem()
{
document.getElementById('DownlFile').value = 'Next';
document.getElementById('WarnLb').style.visibility = 'visible';
}
</script>
If I invert their order, again only the first one in the order is executed and the second one don’t.
What am I missing here ?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<script language="javascript" type="text/javascript">
function ChangeThem()
{
document.getElementById('DownlFile').value = 'Next';
document.getElementById('WarnLb').style.visibility = 'visible';
}
</script>