Quote:
Originally Posted by londoner
Greetings
Please is there a way to execute these two scripts bellow, one of them is html and the other is javascript, with one click:
<input type="button" onClicK="top.clearCountings(), top.clearIt()"
value="CLEAR TABLES AND INTERNAL COUNTERS">
<a href="lottoDown.html" target="lottoDown">CLEAR RIGHT FRAME</a>
Both belong to this: Lotto Number Generator
Regards
|
Problem solved with the script bellow:
<input type="button" onclick="top.clearCountings(), top.clearIt();document.getElementById('oClear').cl ick()"
value="CLEAR TABLES AND INTERNAL COUNTERS">
<a id="oClear" href="lottoDown.html" target="lottoDown">CLEAR RIGHT FRAME</a>