Wijmo UI for the Web
lastPageClass Option
wijmo.pager.wijpager Namespace > options type : lastPageClass Option

An option that indicates the class of the last-page button. You can set this option with any of the jQuery UI CSS Framework icons.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijpager("option", "lastPageClass");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijpager("option", "lastPageClass", newValue);
        
});
var lastPageClass : string;
Example
// Here's the general way you'll set the option:
$("#element").wijpager({
   lastPageClass: "ui-icon-seek-end"
});
See Also

Reference

options type
wijpager jQuery Widget