this is my current javascript includes

<%= javascript_include_tag 'jquery','application'  %>

its works fine but the moment i add the bootstrap-dropdown plugin.

<%= javascript_include_tag 'jquery','bootstrap-transition','bootstrap-dropdown','application'%>

i get an error (firebug console) thats from the bootstrap-dropdown file.

--$("html").on is not a function
[Break On This Error]   
$('html').on('click.dropdown.data-api', clearMenus)-- 

not too sure what I'm doing wrong here or what i did not catch/get. oh btw the old bootstrap-dropdown worked for me.

link|improve this question
sorry fixed it i missed using the latest jquery thats all. – gekong Feb 4 at 18:42
feedback

1 Answer

up vote 7 down vote accepted

You need to upgrade to jQuery 1.7.1.

link|improve this answer
thanks! :) that worked. – gekong Feb 4 at 23:12
feedback

Your Answer

 
or
required, but never shown

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