I am trying to use images as radio buttons which is working fine. When you click on a graphic is adds a CSS class which adds an orange border around the image so that you have made a selection.
Here is the HTML code and jQuery I use to achieve this:
<input class="radio" type="radio" name="asw_options[box_background_color]" id="box_background_color0" value="aqua_solid" checked='checked'>
<label for="box_background_color0"><img src="images/backgrounds/aqua.png"></label>
<input class="radio" type="radio" name="asw_options[box_background_color]" id="box_background_color1" value="blue_solid" >
<label for="box_background_color1"><img src="images/backgrounds/blue.png"></label>
<input class="radio" type="radio" name="asw_options[box_background_color]" id="box_background_color2" value="black_solid" >
<label for="box_background_color2"><img src="images/backgrounds/black.png"></label>
and here is the jQuery to select the radio buttons and highlight them using a CSS class:
$('#solidcolor input:radio').addClass('input_hidden');
$('#solidcolor label').click(function() {
$(this).addClass('selected').siblings().removeClass('selected');
});
OK, so up until this stage all works fine. You click an image and it ends up with an orange border around it.
My issue is after I save the options and reload the page I cannot get the orange border to stay around the previously selected image.
I have tried this jQuery but it doesn't work:
if($("#solidcolor input:radio").attr("checked")==true){
$('#solidcolor label').css("border", "solid 1px orange");
} else {
$('#solidcolor label').css("border", "solid 1px black");
}
Just to prove it works what I am trying to do is say "OK, if the radio button is CHECKED add an orange border and for all the others that are not checked add a black border.
Any help would be greatly appreciated.