Method: hasPage: Difference between revisions

From Turn.js Documentation
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Returns true if the flipbook has a page.
Returns true if the flipbook has a page.


{| class="wikitable"
|-
! scope="col"| Parameter
! scope="col"| Type
! scope="col"| Description
! scope="col"| Default Value
|-
| pageNumber
| Number
| Page Number
| You must specify this parameter


|}
Example:
<pre class="javascript">
if ($("#flipbook").turn("hasPage", 1)) {
alert(‘Page 1 is already in the flipbook’);
}
</pre>


<yambe:breadcrumb>Turn Methods</yambe:breadcrumb>
<yambe:breadcrumb>Turn Methods</yambe:breadcrumb>

Revision as of 16:28, 6 July 2012

Returns true if the flipbook has a page.

Parameter Type Description Default Value
pageNumber Number Page Number You must specify this parameter

Example:

if ($("#flipbook").turn("hasPage", 1)) {
	alert(‘Page 1 is already in the flipbook’);
}

<yambe:breadcrumb>Turn Methods</yambe:breadcrumb>