-3

The display must be in a grid view without any misalignment. Here are the Screen Shots

Shot1

Shot2

the code used is HTML and Javascript. How to format those radio buttons accordingly in CSS & HTML.

Community
  • 1
  • 1
Tezzz
  • 1

1 Answers1

0
$("#myCheckbox").change( function() {
    if($(this).is(":checked")){
        $('#options-radio').css('display', 'block');
    }
});

I am sure in this way, issue will be resolved

JSFiddle for the sample

Okky
  • 10,338
  • 15
  • 75
  • 122
Naveed Ramzan
  • 3,565
  • 3
  • 25
  • 30
  • I need the radio buttons to be at the position underneath the checkboxes. – Tezzz Jun 18 '14 at 10:22
  • You can set whatever position of radio button div. and make that hide. and then above code of ischecked then show that div will be fine. – Naveed Ramzan Jun 18 '14 at 10:23
  • How can I do that. I want to move that radio button just below the Audiometry checkbox in CSS. As their is another checkbox Electrocardiogram. When each and every checkbox is checked it must be displayed just below that checked checkbox. – Tezzz Jun 18 '14 at 10:55