Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

is it possible to style a check box? 1

Status
Not open for further replies.

benluke4

Technical User
Jan 27, 2005
127
0
0
GB
Hi, is it possible to syle a check box?

Ive been trying but failing so was wondering if its possible?

Thanks

BENLUKE
 
No you can't style a checkbox, but you can use images, and use Javascript to swap the image from an unchecked version to a checked version.

(You will need an unChecked checkBox, and a Checked checkBox in your images folder)

HTML:
Code:
<a href="javascript:checkBox()">
<img src="images/checkbox_off.gif" id="check" alt="checkbox" border="0">click to check the box</a>
<input type"hidden" name="check_check" id="check_check" value="false" />

Javascript:
Code:
check=[];
function checkBox() { 
  if(check != true){ 
    document.getElementById(check).src = "images/checkbox_on.gif"; 
    document.getElementById('check_check').value = "true"; 
    check = true;
  } 
  else { 
    document.getElementById(check).src = "images/checkbox_off.gif"; 
    document.getElementById('check_check').value = "false"; 
    check = false; 
  } 
}

[cheers]
Cheers!
Laura
 
Cheers Laure, thats just what i wanted to here

Thanks

Benluke
 
Thanks for the star!

FYI There's a syntax error in my post (Javascript)

Here's the correct code:
Code:
check=[];
function checkBox() { 
  if(check != true){ 
    document.getElementById('check').src = "images/checkbox_on.gif"; 
    document.getElementById('check_check').value = "true"; 
    check = true;
  } 
  else { 
    document.getElementById('check').src = "images/checkbox_off.gif"; 
    document.getElementById('check_check').value = "false"; 
    check = false; 
  } 
}

[cheers]
Cheers!
Laura
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top