$(document).ready(function() {
  var table =  $('table.books');
  table.flexigrid({
    title: 'Books',
    width: 500, 
    height: 500,
    searchitems : [
      {display: 'Author', name: 'Author'}
    ],
  });
});
