This may sound like a stupid question but im just not great yet at javascript
so currently the page does this:
is there a way i can change this from having to click the button for "Show List" to just having it do it when the page loads? Any help or suggestions would be appricated
so currently the page does this:
HTML:
<body onload="checkLoad(); showConfig(); checkOptions(); testAjax();">
<table class="menuGroup">
<tr>
<td width="100%" align="center">
Title: <input type="text" id="title" size="32" value="My Tournament Name" onchange="updateTitle();" readonly>
<!-- <input type="button" value="End Config" onclick="showTitle();"> -->
</td>
</tr>
<tr>
<td><input type="button" id="load" value="Show List" onclick="callLoad()" DISABLED></td>
<input type="hidden" id="complete" CHECKED/>
</tr>
</table>
is there a way i can change this from having to click the button for "Show List" to just having it do it when the page loads? Any help or suggestions would be appricated