This content has been marked as final.
Show 4 replies
-
1. Re: Link Edge animation to HTML page?
shadowfax007 Mar 11, 2013 12:39 PM (in response to Susan Hester)Susan.
Yes you can, assuming you meant index.html and not index.com :-)
James
-
2. Re: Link Edge animation to HTML page?
Susan Hester Mar 11, 2013 12:50 PM (in response to Susan Hester)Thank you, James.
Would the correct code be with quotes, as below:
window.open("mysitename/index.html", "_self");
-
3. Re: Link Edge animation to HTML page?
shadowfax007 Mar 11, 2013 12:57 PM (in response to Susan Hester)Susan-
You don't need the sitename - just use this (assuming you are calling it from the same directory as you said):
window.open("index.html", "_self");
Else, you should be able to use this if it one folder deep:
window.open("../index.html", "_self");
James
-
4. Re: Link Edge animation to HTML page?
Susan Hester Mar 11, 2013 1:00 PM (in response to shadowfax007)Many thanks, James!

