Copy link to clipboard
Copied
Is there a way to connect/link two or more HTML5 Canvas documents to each other?
I purposefully created different .fla Animate HTML5 Canvas documents to make the page loads faster, but I now cannot figure out how to seamlessly connect the two. Not sure if it is simply a matter to using a "go to web page" code and applying the finished html website address?
Any suggestions?
The preferred method of navigating the current page to a new URL in JavaScript is:
window.location.href = "mywebpageurl.htm";
html - Should I use window.navigate or document.location in JavaScript? - Stack Overflow
window.open is generally only used to open popup windows.
Copy link to clipboard
Copied
the easiest (but not the most seamless) is to use window.open().
Copy link to clipboard
Copied
The preferred method of navigating the current page to a new URL in JavaScript is:
window.location.href = "mywebpageurl.htm";
html - Should I use window.navigate or document.location in JavaScript? - Stack Overflow
window.open is generally only used to open popup windows.