Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Ibooks on Mac issue

Hi,

I've created a interactivity ePUB3 output. The contenteditable attributes has been used for the text field. Its working fine in IPAD ibooks not in mac ibooks.


<p contenteditable="true">&#160;</p>


The contenteditable attribute doesn't works in mac. please help me out of this issue.

iMac, OS X Yosemite (10.10.5)

Posted on Aug 21, 2015 4:02 AM

Reply
Question marked as Best reply

Posted on Aug 26, 2015 3:58 AM

The below script will enable the content editable attribute in Mac systems. Tested, working fine.


$(selector).observe('touchstart', function(event) {

var element = event.element();

if (element.disabled)

element.disabled = false;

element.focus();

event.stop();

});

1 reply

Ibooks on Mac issue

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.