Please let us know how to write the tour to reference elements in the iframes. Here are some examples of what we've done so far - none of the tries have been working:
var tour = {
id: "introduction_tour",
showPrevButton: true,
showNextButton: true,
steps: [
{
title: "Guided tour",
content: "This starts a guided tour of the application.",
target: "startTourBtn",
placement: "bottom"
},
{
title: "Searching the system",
content: "This is where you enter a search",
target: "q",
placement: "bottom"
},
{
title: "The publications",
content: "Here are the publications. Click on the thumbnail to read/watch/listen. Click on text under thumbnail to read publication data.",
target: "$('#list_publications').contents().find('.article-container')",
placement: "right"
}
]
};
We have a webservice with same domain iframes and we have the tour script and hopscotch source code in the top document.
These are the iframes:
Please let us know how to write the tour to reference elements in the iframes. Here are some examples of what we've done so far - none of the tries have been working:
Thanks for any help!!