View Single Post
Old 11-25-2007, 10:54 PM   #2 (permalink)
londoner
Junior Googler
 
Join Date: Jan 2006
Location: London
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
londoner
Quote:
Originally Posted by londoner View Post
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>
londoner is offline   Reply With Quote