1

I want to have an Adobe Edge animation, which plays after a visitor clicks an ordinary HTML form button. How can this be done?

Charles
  • 50,943
  • 13
  • 104
  • 142
Jules
  • 14,200
  • 13
  • 56
  • 101

1 Answers1

0
ball_edge.js

remove:
$(window).load(function() {
$.Edge.play();
});


The HTML file

Add immediately before </HTML>:
<script>
$("#RoundRect1").click(function () {
$.Edge.play();
});
</script>
Kanaiya Katarmal
  • 5,974
  • 4
  • 30
  • 56