I know there is a way to change a value in javascript on the page of interest
for example
var glblBlnVideoComplete = false;
the var is set to false
further down the page there are several if statements
i need the value to be set to true so i can access the results for
{
if(glblBlnVideoComplete)
return true;
return confirm('This will log you out. Are you sure?');
}
My question is
how do i change this value to true
on the page
and it actually occur
on the page
If y'all need more specifics i can give them IDK what information is needed to solve this problem
All help appreciated



