link_to is the method in Ruby on Rails that is used to create link tags within views.
I just want to use link_to to open a popup. I tried something but it doesn't work: <%= link_…
ruby-on-rails-3 popup link-toHi I got a noob question, I want to create the following HTML result: <a href="/controller/action" class="…
ruby-on-rails-3 href link-to content-tagI have a link_to Rails helper that downloads a wallpaper when clicked. But the image is loading in the …
ruby-on-rails image download link-toI need to add a link to download the file from assets/docs/Физика.pdf I do not know how to …
ruby-on-rails link-toI want to add a class to a link_to only if a statement is true. <%= link_to product.…
ruby-on-rails ruby class if-statement link-toI've ran into a ror problem using the link_to. Why does my link to use the GET method and …
ruby-on-rails link-toHow can I use the link_to method in Rails 4 to provide the same effect as <a href="(mysite.…
ruby-on-rails link-toBasically, I have a lot of code that looks like this: link_to t('.profile'), business_path(@business), class: …
css ruby-on-rails views link-to view-helpersI want to make an in-place search in my rails app. I used button_to_remote with prototype, but now …
jquery ruby-on-rails search link-to in-placeI'm writing a ruby-on-rails library module: module Facets class Facet attr_accessor :name, :display_name, :category, :group, :special ... URI = {:controller =&…
ruby-on-rails link-to url-helper