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

An option that indicates the class of the first-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", "firstPageClass");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijpager("option", "firstPageClass", newValue);
        
});
var firstPageClass : string;
Example
// Here's the general way you'll set the option:
$("#element").wijpager({
   firstPageClass: "ui-icon-seek-first"
});
See Also

Reference

options type
wijpager jQuery Widget