Hello Community.
I try to use the iLightbox (http://www.ilightbox.net) inside Adobe Edge.
I've added the following Code to the "compositionReady" Event:
- <scripttype="text/javascript"src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
- <scripttype="text/javascript"src="/src/js/jquery.requestAnimationFrame.js"></script>
- <scripttype="text/javascript"src="/src/js/jquery.mousewheel.js"></script>
- <scripttype="text/javascript"src="/src/js/ilightbox.packed.js"></script>
- <linkrel="stylesheet"type="text/css"href="/src/css/ilightbox.css"/>
And this to the "click" Event of a Rectangle:
- $.iLightBox([
- {
- URL:"image.jpg"
- }
- ]);
Even commenting the first line(jquery is included in Edge) won't help.
After clicking the Rectangle i get this Error in the console:
Javascript error in event handler! Event Type = elementedge.2.0.1.min.js:162
When I use those Lines of Code into a html file(in the same directory as my Edge files) it works properly.
Does someone have an Advice what I am doing wrong?