I want to handle the radio button on change event. But, as the designer has already used iCheck-helper, the actual radio actions are not performed when the code is run.
Below is the code
<div class="radio-wrap">
<input type="radio" id="bg-effect" value="full" />Full Image
</div>
When we run the code and inspect the code in chrome, the generated HTML is as below.
<div class="radio-wrap">
<div class="iradio_minimal-grey checked"><input type="radio" id="bg-effect" value="full" checked="" style="position: absolute; opacity: 0;"><ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins></div>Full Image
</div>
To capture the selected value, I want to handle the change event for this radio button.