I have a jquery mobile collapsible and I want to make it transparent
I tried following style, but was in vain
background-color: rgba(0, 0, 0, 0.6);
Here is the Fiddle
When I use
background: #557700;
filter: alpha(opacity=30);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
opacity:0.3;
Entire collapsible div including selectbox inside become transparent.
How can I solve this so that only background of collapsible is transparent.
EDIT
This is what is used to get it work
$('#my_collapsible').find('div').first().css({ 'background-color': 'rgba(0,0,0,0.5)','color':'white'})
Don't know if this is a good approach.