About Adobe Edge Preview 4 Click Here
I tried the code below for testing. Expected result is clicking the button, then load the animation dynamically.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="edge_includes/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$('button').click(function() {
$('body').load('ajax.txt');
});
});
</script>
</head>
<body>
<button>show</button>
</body>
</html>
Content in ajax.txt:
<div id="stage" class="EDGE-49494571"></div>
<script type="text/javascript" src="ys-slider_edgePreload.js"></script>
But it doesn't work. Is there any solution to load it properly?