To obtain the carrotCell API, a callback function can be used, see the customize demo: initialized callback. Another way is to obtain it through the carrotCell creation.
var myCarrotCell = $(".carrotCell").carrotCell();
var myAPI = $(myCarrotCell).data("carrotCell");
Calling API Methods
To see the complete list of API methods, please see the documentation.
prev
next
Don't know how many pages of kittens. :(
This example shows how the API method getPAgeCount is used.
var kitten = $("#kitten").carrotCell();
var kittenAPI = $(kitten).data("carrotCell");
var howManyPages = kittenAPI.getPageCount();
$("#kittenResult").html(howManyPages + " pages of kittens");
Some API Methods
A demonstrating of the API methods follow.
1
2
3
4
5
6
7
8
9
prev
next
Result:
No Results yet
For the complete list of what getters return, please see the documentation.