Jump to content

Return To Default Values


aksun

Recommended Posts

Hello, i have this code:

<tr>
	<td><br /><input type="text" size="30" name="voittaja" /></td>
	<td id="vaihda"><br />Voittajapelaajan nimi.<br /></td>


</tr>
<tr>
	<td><br /><input type="text" size="30" name="haviaja" /></td>
	<td id="vaihda2"><br />Häviäjäpelaajan nimi.<br /></td>


</tr>
<tr>
	<td><br /><input type="checkbox" id="valittu" /><br /></td>
	<td><br />Tasapeli?<br /></td>
</tr>
<tr>
	<td><br /><input type="text" id="voittajap" size="5" /></td>
	<td><br />Voittajapelaajan eräpisteet.</td>
</tr>
<tr>
	<td><br /><input type="text" id="haviajap" size="5" /></td>
	<td><br />Häviäjäpelaajan eräpisteet.</td>
	</tr>
	<script type="text/javascript">
document.getElementById('valittu').onchange = function() {
       document.getElementById('voittajap').disabled = this.checked;
document.getElementById('haviajap').disabled = this.checked;
document.getElementById('voittajap').value = "1.5";
document.getElementById('haviajap').value = "1.5";
document.getElementById('vaihda').innerHTML = "<br />Pelaajan nimi";
document.getElementById('vaihda2').innerHTML = "<br />Pelaajan nimi";
}
</script>

Well, i'm trying to change input values and some tds, when clicking the checkbox. It works fine, but there is my problem:

when unchecking the checkbox, it don't return back to "default" values. :bash: How can i make this work like that? PS: the code might include errors or something(i'm not very good at js).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...