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

Default value: 'First'

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

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

Reference

options type
wijpager jQuery Widget