Aug 25, 2006 #1 mansii Programmer Joined Oct 18, 2002 Messages 641 Location ID To the point: Code: <script> function allchecked(){ alert("OK"); } In IE 5+: Code: <button onclick="allchecked();">Check it</button> works just fine (indicated by the alert), but NOT in Firefox. Any shed? Regards
To the point: Code: <script> function allchecked(){ alert("OK"); } In IE 5+: Code: <button onclick="allchecked();">Check it</button> works just fine (indicated by the alert), but NOT in Firefox. Any shed? Regards
Aug 25, 2006 #2 PGoRule Programmer Joined Jul 26, 2006 Messages 438 Location IN No..It works fine with IE and FF. Code: <script> function allCheck() { alert("OK"); } </script> <input name="but" type="button" value="Tmp" onClick="allCheck();"> <button onClick="allCheck();">Checkit</button> Sharing the best from my side... --Prashant-- Upvote 0 Downvote
No..It works fine with IE and FF. Code: <script> function allCheck() { alert("OK"); } </script> <input name="but" type="button" value="Tmp" onClick="allCheck();"> <button onClick="allCheck();">Checkit</button> Sharing the best from my side... --Prashant--
Aug 25, 2006 Thread starter #3 mansii Programmer Joined Oct 18, 2002 Messages 641 Location ID Yeah, sure. It was a typo, my mistake. Thank's. Upvote 0 Downvote