Display button when checkbox checked?

T

Targa

I have a form in which I want to have an button(image) displayed next to a
checkbox when it is checked.
If the box is unchecked, the button should disappear.

How can I do this?

Thanks!
 
M

McKirahan

Targa said:
I have a form in which I want to have an button(image) displayed next to a
checkbox when it is checked.
If the box is unchecked, the button should disappear.

How can I do this?

Thanks!


Perhaps?


<html>
<head>
<title>button.htm</title>
<script language="javascript" type="text/javascript">
<!--
function checker(that) {
if (that.checked) {
toggle.style.display = "";
} else {
toggle.style.display = "none";
}
}
// -->
</script>
</head>
<body>
<form>
<input type="checkbox" name="Box" onclick="checker(this)">
<span id="toggle" style="display:none">
<input type="button" value="Button">
</span>
</form>
</body>
</html>
 
T

Targa

Hey - This works great!

However, I have several fields below the initial checkbox and button. Anyway
to leave those alone?

Thanks!
 
M

McKirahan

Targa said:
Hey - This works great!

However, I have several fields below the initial checkbox and button. Anyway
to leave those alone?

Thanks!

Just put
onclick="checker(this)"
on the checkbox(es) you want.

Or are you asking about the movement of those items when the button appears?
If so, then try:

<html>
<head>
<title>buttton.htm</title>
<script language="javascript" type="text/javascript">
<!--
function checker(that) {
if (that.checked) {
toggle.style.visibility = "visible";
} else {
toggle.style.visibility = "hidden";
}
}
// -->
</script>
</head>
<body>
<form>
<input type="checkbox" name="Box" onclick="checker(this)">
<span id="toggle" style="visibility:hidden">
<input type="button" value="Button">
</span>
<br><input type="checkbox" name="Box" onclick="checker(this)">
</form>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top