iBooks recently started supporting JavaScript inside epub. Where is this documented?

Are there any code examples to get started?

link|improve this question

79% accept rate
feedback

3 Answers

up vote 1 down vote accepted

From what i've seen, you already have quoted the best known sources.

I think that it is not documented anywhere in the official docs from Apple. Here are some elements from what I've experienced.

Features supported by iBooks

A lot of things that work on Safari work on iBooks too. You already have access to HTML5 features like internal DB, canvas, etc. The biggest problems I saw were related to slowness and vertical positionning. There are problems with pagination too : if you add content, pages are not added to the end and the content can overflow.

Validation for the iBookStore

Before being published on the iBookStore, it relates entirely on Apple's arbitrary validation when it comes to Javascript. I know at least one ePub with interactive forms and DB, that they have validated.

link|improve this answer
feedback

For lack of better resources, I created a open-source example of using JQuery to show an alert. Might be helpful as a starting point.

link|improve this answer
feedback

The examples you give refer to the interactivity in the body of the books. Javascript scripting can also be used within the HTML widgets:

HTML widget boiler plate on github -- https://github.com/TrevorBurnham/iBooks-HTML-Widget-Boilerplate.

iBook Widgets with D3.js -- http://vallandingham.me/ibooks_and_d3.html (to check the widget, click on 'download a copy of my iBook file', change the iba extension to 'zip', uncompress, navigate to vis-1.wdgt)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.