Hello,
Is it possible
take this example
say function unlimite() is running. in this situation user will hit the stop button unlimit function will stop too;
If it is possible, how to achieve that
Best Regards,
Johny
Is it possible
take this example
Code:
<script>
var repeat=true;
function unlimite()
{
while(repeat)
{
do some thing;
}
}
function stop()
{
repeat=false;
}
</script>
<input type="button" onClick="stop()" value="stop">
If it is possible, how to achieve that
Best Regards,
Johny
Comment