wijmo.lightbox.wijlightbox Namespace > options type : counterFormat Option |
Default value: '[i] of [n]'
Determines the text format of counter. '[i]' and '[n]' are built-in parameters represents the current page index and the number of pages.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijlightbox("option", "counterFormat"); // Set value var newValue; // Type: string $(".selector").wijlightbox("option", "counterFormat", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#id").wijlightbox({ counterFormat: '[i]/[n]' });