My sourcecode :
 <input class="eanvoera5" type="checkbox" name="nieuwpid">
Gets transformed for design to the below code : (when i view the page in my browser)
   <div class="icheckbox_minimal checked" style="position: relative;" aria-checked="true" aria-disabled="false">
   <input class="eanvoera5" type="checkbox" name="nieuwpid" 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; background: none repeat scroll 0% 0% rgb(255, 255, 255); border: 0px none; opacity: 0;"></ins>
  </div>
Problem :
I can not get my Jquery functions working for the checkbox. If the checkbox is clicked I want to show / hide another box.
Code Jquery :
$(".eanvoera5").on('click', function() {
alert('hitest');
}
Its driving me crazy.. Somebody has an idea ?
 
     
     
     
    