I want to use LiveFilter https://github.com/mikemerritt/LiveFilter in my rails app. It does exactly what I want to do - filter existing elements using a search box.

How would I go about adding this (or any other) jquery plugin to rails 3.1, so that it works with the asset pipeline? If you know, will it be different in 3.2?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Add the livefilter.js file to your app/assets/javascripts directory, and add a require directive to your JS manifest(s) (e.g. application.js) :

//= require livefilter

AFAIK, the asset pipeline works the same in 3.1 and 3.2.

link|improve this answer
3  
A better place to have the plugins is in vendor/assets/javascripts, and require as usual in your application.js file – Terw Feb 1 at 11:23
@Edward as Terw added, you can add your assets to three different locations. See guides.rubyonrails.org/asset_pipeline.html#asset-organization for more. – Jef Feb 1 at 11:28
Thanks that's great. I've put it in vendor/assets/javascripts as Terw suggested – Edward Feb 1 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.