On Fri, Oct 17, 2008 at 8:42 AM, Lost Warrior
<[EMAIL PROTECTED]> wrote:
>
> i want to integrated link_to with image_tag
>
> before i did link_to with image_tag like this
>
> <%=link_to image_tag(image.filename
> ,:size=>'110x85'),{:action=>'thumb_crop',:controller=>'light',:id=>image.id},:class=>'lightview',:id=>image.id,:rel=>'iframe',:title=>image.filename+'/Crop/'.camelize+'fullscreen
> :true'%>
> but now
> <%=image_tag ("/trx/images/ob.gif",:alt=>'mob',:title=>'mob')%>
> <%=link_to
> "Pass",{},:title=>'Mobile',:target=>'_blank',:href=>'http://www.goeoz.com.html?id=8006'
> %>
>
>
> now i want to display the text from link_to tag alsoI don't know whether I follow you, the following may not help but let's try. The first argument of link_to is an arbitrary HTML fragment. You can put there whatever you want. The helper image_tag just returns a string containing HTML: "<img ... />", and that is what link_to receives in the first example. Just a vanilla Ruby string. You can build on that one to pass whatever you want to link_to. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

