I’m using PaperClip with this code:
link_to "OPEN", @worequest.attach.url
Is there a way to open the file in a new browser tab?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To send a file:
You can use the send_data or send_file method in your controller action:
so this line in a controller’s action will open the image in the browser (and not download it):
To open a link in a new tab:
You can also provide a
:target => '_blank'to the Link_to (will open the link in a new tab)