Closed leonid-shevtsov closed 11 years ago
Leonid,
Can you be more explicit about how you did this for us kiddies? I added
jQuery.noConflict(); (function($) { $(function() { ..... }); })(jQuery);
inside of hashgrid.js as bookends. I wonder if there is a way to not alter the file itself.
Only just seen this. Thanks, Leonid. Merging this in.
I found out that hashgrid would not work after jQuery.noConflict() since it's using
window.$
instead ofwindow.jQuery
.For example, Wordpress does this this after it's done using jQuery for its own purposes.
I fixed this by redefining
$
insidehashgrid()
and usingjQuery()
to initialize the script.