If I have a radio group with buttons:
... how can I show only images in the select option i
You can use CSS for that.
HTML (only for demo, it is customizable)
a b c ...
CSS
input[type="radio"] { display: none; } input[type="radio"]:checked + label { border: 1px solid red; }
jsFiddle