You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
respinos edited this page Sep 5, 2017
·
1 revision
Highlighting is a function of the EPUB engine. Currently it is exposed for the epub.js/v0.3 engine:
// a CFI range
var cfiRange = "epubcfi(/6/14[Acknowledgement]!/4/4,/1:637,/1:665)";
// add a highlight
reader.annotations.highlight(cfiRange);
// add a highlight with data
reader.annotations.highlight(cfiRange, {});
// add a highlight with a callback
reader.annotations.highlight(cfiRange, {}, cb);