Form input stop working after using jquery.stickytableheaders

Form input stop working after using jquery.stickytableheaders

Hi there, I do have a table where I needed to fix the header so I used this plugin jquery.stickytableheaders which is perfect except for one thing.
Inside the table there is a filter that should reload the table with the record containing the value in the filter but it does not work anymore, here is the input code:

  1. <input type="text" name="fabrik___filter[list_1_com_fabrik_1][value][0]" class="inputbox fabrik_filter input-medium" size="20" value="" id="master_oda___ordine_dialogvalue">
The jquery code I added is this:
  1. <script src="/psa/psa_abstegodev_j/media/system/js/jquery.stickytableheaders.js"></script>
  2. <script>
  3. $.noConflict();
  4. jQuery( document ).ready(function( $ ) {
  5.   // Code that uses jQuery's $ can follow here.
  6.   $("#list_1_com_fabrik_1").stickyTableHeaders();
  7. });
  8. </script>

Any advice?

Thanks a lot!