Change values of select box of "show 10 entries" of jquery datatable

datatables, jquery

Solution

Don't forget to change the iDisplayLength as well:

$(document).ready(function() {
    $('#tbl_id').dataTable({
        "aLengthMenu": [[25, 50, 75, -1], [25, 50, 75, "All"]],
        "iDisplayLength": 25
    });
} );

Problem

By default, jquery datatable shows 10 by default and has options : 10,25,50,100 How can I change these options?

Original source