I was trying to make style for checkbox,radio button and select box.
I got a plugin from ryanfait [ http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/ ] and works well if we code HTML as he mentioned.
Now, my issue is something different. The HTML code will look like this.
<label class="checkBox">
<input type="checkbox" id="rememberMember" class="styled"/>
Remember me
</label>
OR
<input type="checkbox" id="rememberMember" class="styled"/>
<label class="checkBox" for="rememberMember">Remember me</label>
On clicking on the checkbox - it is not showing the tick mark.
On clicking on the 'Remember me' text - It is showing the tick mark.
I think the issue is with label.
Is there any possible way (editing the JS file) ? JS file : http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/custom-form-elements.js
I put in JSfiddle but it is not loading the image !!
http://jsfiddle.net/smilyface/pXETM/1/