I am trying to use bootstrap modal http://twitter.github.com/bootstrap/javascript.html#modals on a rails link to open that link in the modal
<%= link_to
There is a prettier way to add data attributes in Rails. You can do something like this to get the same results.
data
<%= link_to 'Click Here', "#", data: {toggle: "modal", target: "#modal"} %>