Nuts & Bolts for any eCommerce site
How it all comes together
Heres what you are looking for

Adobe Edge noConflict fix 0.1.2

Facebook
Twitter
Reddit
LinkedIn

Adobe Edge 2 is now available, but they still haven’t gotten around to making it work when jQuery is in noConflict mode.

Download the 0.1.2 fix

Again, you will still need to edit your project file like so:

/**
 * Adobe Edge DOM Ready Event Handler
 */
$(window).ready(function() {
  $.Edge.initialize(symbols);
});
/**
 * Adobe Edge Timeline Launch
 */
$(window).load(function() {
  $.Edge.play();
});

I simply added the noConflict() function and changed the four instances of “$” to “jQuery”.

/**
 * Adobe Edge DOM Ready Event Handler
 */
jQuery.noConflict();
jQuery(window).ready(function() {
  jQuery.Edge.initialize(symbols);
});
/**
 * Adobe Edge Timeline Launch
 */
jQuery(window).load(function() {
  jQuery.Edge.play();
});

(Source: Skynet Solutions)

By Blaine Schmeisser

More Articles

Need eCommerce web support?

Give us a shout today! We won't bite.....hard.