Hello everyone,
is any way to make the html file load an edge project from another folder of hosting?
Exemple i have a folder in my hosting named "hbk" in path "public_html/hbk"
inside i have an edge project with 2 differents files, this is the html:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Untitled</title>
<!--Adobe Edge Runtime-->
<script type="text/javascript" charset="utf-8" src="menu_edgePreload.js"></script>
<script type="text/javascript" charset="utf-8" src="index_edgePreload.js"></script>
<style>
.edgeLoad-EDGE-4647374 { visibility:hidden; }
</style>
<style>
.edgeLoad-EDGE-21705955 { visibility:hidden; }
</style>
<!--Adobe Edge Runtime End-->
</head>
<style type="text/css">
body { background: #000000 no-repeat center; }
</style>
<body style="margin:0;padding:0;">
<div id="Stagemenu" class="EDGE-4647374">
</div>
</body>
<body style="margin:0;padding:0;">
<div id="container" style="margin:0;padding:0;height:584px;background: url(images/preloader.gif) no-repeat center;">
<div id="Stageindex" class="EDGE-21705955">
</div>
</body>
</html>
What i want is load this "menu" file in another html from different folder, for user dont need wait the same menu load again in this next html
I try change path in this line but its doesn't work:
<script type="text/javascript" charset="utf-8" src="http://www.mydomain.com/hbk/menu_edgePreload.js"></script>
To be honest i dont know what do for load the complete edge project with images from different folder..