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

Default value: 'Previous'

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

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

Reference

options type
wijpager jQuery Widget