[thelist] Frustrating problem

Ken Kogler ken at kenkogler.com
Fri Apr 5 13:15:11 CST 2002


Not sure, but in your code you have this:
=========================================
<script language="Javascript" src="jsagentcontrolspv.js">

function checkArrivals() {
if (typeof srcv == "undefined") {
setTimeout("location.reload()",4000);
}
}
</Script>
=========================================

Try replacing that with this:

=========================================
<script language="Javascript" src="jsagentcontrolspv.js"></script>
<script language="javascript">
function checkArrivals() {
if (typeof srcv == "undefined") {
setTimeout("location.reload()",4000);
}
}
</Script>
=========================================

It may be that it doesn't like the external reference and the local
functions within the same <script></script> tags.

-Ken (IE6/XP)

> Buttons work on my Mac with IE 5, but my client on a PC can't
> get them to work.




More information about the thelist mailing list