Ive seen this question Zurb Foundation conflicts with jQuery UI autocomplete?, but I was hoping for some in-detail instructions on how best to configure with the rails asset pipeline, what to require from the gems, etc. One answer includes
So i have removed the jQuery Code from foundation.min.js and added Google CDN for jQuery.
But I'm not sure how I'd do that, or if that is even the best way. The problem is that $.fn.autocomplete is undefined.
Question: How can I have access to a working jQuery, Modernizr, Zurb Foundation elements, and jQuery UI autocomplete all in the same page?
Right now I use the following gems:
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'modernizr'
gem 'zurb-foundation'
And here is my application.js manifest file:
//= require jquery
//= require jquery_ujs
//= require jquery.textchange
//= require foundation
//= require jquery.ui.autocomplete
//= require_tree .
I've read that Zurb Foundation includes Modernizr and jQuery, so not sure if the jquery require is necessary. Thanks in advance for any and all tips