I am using Ruby 1.9.3 and Rails 3.2.16. My bootstrape dropdown menu not working. I have no idea why?
>> Gemfile contain: ruby "1.9.3" gem 'rails', '3.2.16' gem 'bootstrap-sass', '2.1' gem "watu_table_builder", :require => "table_builder", :git => "git://github.com/watu/table_builder.git" gem 'bcrypt-ruby', '3.0.1' group :development, :test do gem 'sqlite3', '1.3.5' end group :assets do gem 'sass-rails', '3.2.5' gem 'coffee-rails', '3.2.2' gem 'uglifier', '1.2.3' gem 'jquery-ui-rails' end gem 'jquery-rails' gem 'jquery_datepicker', '~> 0.4' group :production do gem 'pg', '0.12.2' end >> Code of application.js: //= require jquery-ui //= require jquery_ujs //= require bootstrap-dropdown //= require bootstrap //= require jquery //= require_tree . I have taken reference of [this]http://stackoverflow.com/questions/10218587/twitter-bootstrap-drop-down-suddenly-not-working link. But this problem does not solve. Could you help me on this? Kind regards. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a5f1061ce71be05f6cd254b6fc7f6287%40ruby-forum.com. For more options, visit https://groups.google.com/d/optout.

