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

Default value: 'Last'

An option that indicates the text to display for the last-page button. The text will display like a tooltip when a user hovers over the last-page button.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijpager("option", "lastPageText");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijpager("option", "lastPageText", newValue);
        
});
var lastPageText : string;
Example
// Here's the general way you'll set the option:
$("#element").wijpager({
  lastPageText: "Go To Last"
});
See Also

Reference

options type
wijpager jQuery Widget