Hi,
I am using bootstrap 3.5 version, there are three buttons 'Oneway,Return,Multi City' and onclick i want to show/hide div. how to achieve it?
if i am not using 'data-toggle="buttons"' it is working but i want to use this data-toggle="buttons".

here is html:
<div class="btn-group col-md-12" data-toggle="buttons">
<label class="btn btn-default">
<input type="radio" id="q156" name="quality[25]" value="1" />Oneway
</label>
<label class="btn btn-default active">
<input type="radio" id="q157" name="quality[25]" value="2" /> Return
</label>
<label class="btn btn-default">
<input type="radio" id="q158" name="quality[25]" value="3" /> Multi City
</label>
</div>
here is javascript:
<script>
$(document).ready(function(){
$("#q156").click(function(){
alert('egrgregrg');
});
});
</script>