You identified
$config['div'] = '#list_view';
in your configuration, but you did not define this container in your view. Therefore, no ajax calls will be sent.
So instead
<tr style="height: 50px;"><td colspan="4" style="text-align: right; padding-right:10px;"><?php echo $links; ?></td></tr>
Try placing the container <div id="list_view"><?php echo $links; ?></div>as shown below:
<tr style="height: 50px;"><td colspan="4" style="text-align: right; padding-right:10px;"><div id="list_view"><?php echo $links; ?></div></td></tr>
pagination Jquery_pagination.php
line number 184
if( ( $curr_offset + $this->per_page ) < ( $this->total_rows -1 ) )
if( ( $curr_offset + $this->per_page ) <= ( $this->total_rows -1 ) )
...