Deltaflyer
Programmer
I am using the following code in Internet Explorer to get the user to confirm a selection they have made, if they confirm then an email is sent, if not then it is not, AND IT WORKS.
The problem is most of my users are using NetCrud, can anyone tell me why this coding does is not working.
<script>
function jump()
{
if (document.femail.selreas[2].checked == true)
{
var char=confirm('You Have Requested A Closed Update To Be Sent To The Customer.\n\nIf This Is Correct, Click OK.')
}
if (char == false)
{
return
}
document.femail.link.value = document.femail.link.value
document.femail.logentry.value = SCIB(document.femail.logentry.value)
document.femail.submit()
};
</script>
DeltaFlyer ;-)
DeltaFlyer - The Only Programmer To Crash With Style.
The problem is most of my users are using NetCrud, can anyone tell me why this coding does is not working.
<script>
function jump()
{
if (document.femail.selreas[2].checked == true)
{
var char=confirm('You Have Requested A Closed Update To Be Sent To The Customer.\n\nIf This Is Correct, Click OK.')
}
if (char == false)
{
return
}
document.femail.link.value = document.femail.link.value
document.femail.logentry.value = SCIB(document.femail.logentry.value)
document.femail.submit()
};
</script>
DeltaFlyer ;-)
DeltaFlyer - The Only Programmer To Crash With Style.