$(".a").on('click',function(){
alert($(this).next('input[type="hidden"]').attr('value'))
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="id">
<div>
<strong><input type="checkbox" value="1" class="a"> chbox1</strong>
<input type="hidden" value="1">
</div>
<div>
<strong><input type="checkbox" value="1" class="a"> chbox1</strong>
<input type="hidden" value="2">
</div>
</div>
How can i get the hidden element value when i change the check box status?
anyone knows let me know?
Thank you