Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NetCrud Strikes Again.

Status
Not open for further replies.

Deltaflyer

Programmer
Oct 11, 2000
184
GB
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.
 
No need to respond to this posting, i have figured out what was wrong with it.

It appears that char is a JS reserved name. changed char to myval and it worked.

Sorry to have bothered ya!!
DeltaFlyer ;-)

DeltaFlyer - The Only Programmer To Crash With Style.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top