Hi all, I've just recently started developing on Rails, just this month.
I have a simple question that I can't find the answer to elsewhere;
I'm using the link_to_remote directive which generates an anchor tag. I'd like to have A whole div section nested within the generated anchor tag so that the whole div is clickable rather than just the text in the button.
This is how it looks now:
<div class="button"> <%= link_to_remote 'Add', :url => { :action => 'add', :id => section }, :update => 'section_wrapper'%> </div>
I'd like to get a link to the appropriate action nesting <div class="button">Add</div>
Any help is appreciated