Event: last: Difference between revisions

From Turn.js Documentation
Jump to navigation Jump to search
(Created page with "<yambe:breadcrumb>Turn Events</yambe:breadcrumb>")
 
No edit summary
Line 1: Line 1:
This event is triggered when the current page is the last page of the flipbook.
{| class="wikitable"
|-
! scope="col"| Argument
! scope="col"| Type
! scope="col"| Description
|-
| event
| Object
| Event Object
|}
Example:
<pre class="javascript">
$("#flipbook").bind("last", function(event) {
alert("You are at the end of the flipbook");
});
</pre>
<yambe:breadcrumb>Turn Events</yambe:breadcrumb>
<yambe:breadcrumb>Turn Events</yambe:breadcrumb>

Revision as of 02:51, 7 July 2012

This event is triggered when the current page is the last page of the flipbook.

Argument Type Description
event Object Event Object

Example:


$("#flipbook").bind("last", function(event) {
	alert("You are at the end of the flipbook");
});

<yambe:breadcrumb>Turn Events</yambe:breadcrumb>