I need away to exit and if statement if a condition is meet, but stay in the function and continue with the rest of it. Something like this (but works):
if (!document.forums['foo'].element['checkbox'].disabled==true)
{
statements....
}else{
Exit if
}
obviously exit if does not work but that just to give you and idea how I would like it to work.
if (!document.forums['foo'].element['checkbox'].disabled==true)
{
statements....
}else{
Exit if
}
obviously exit if does not work but that just to give you and idea how I would like it to work.