Question
Using JS to get a slide's elements
I can do this to get the elements in/on a slide
...
eventEmitterObj.addEventListener("CPAPI_SLIDEENTER", function(e) {
var elems = e.Data.si;
};
but I need to get the elements in a JavaScript function independent from the slide enter event. Is there some other variable of object I can query to get the elements?
