I have the following scripts:
<script ... jquery-1.9.1.js"></script>
<script ... dataTables.js"></script>    
<script ... columnFilter.js"></script>
The following code exists in columnFilter.js:
(function ($) {
   $.fn.columnFilter = function (options) {
       //some code...
       function _fnCreateCheckbox(oTable, aData) {
           //some code...
       }
   };
})(jQuery);
What I would like to do is override function _fnCreateCheckbox(oTable, aData) with my own code. Im fairly new to javascript, so would appreciate an example.
I have tried simply grabbing the code above and adding it to it's own <script> tags, but that didn't work. It completely stopped the columnFilter.js from working (which is as expected I guess). Not really sure what else to try.
 
     
     
    