facebox rails app
how do I use facebox in a Rails app knowing that I already have the jquery-rails gem installed? Ne开发者_开发百科ed sample code that goes into the view as well. Thanks.
Include facebox library in your application.html.erb file.
Add this code in a javascript file.
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox()
})
View
<a href="images/stairs.jpg" rel="facebox">text</a>
There are a few simple examples and some documentation on their site https://github.com/defunkt/facebox#usage.
精彩评论