Search code examples
mojolicious

url_for with target='_blank'


How to create a link with Mojolicious tag-helper url_for which opens in a new window/tab? The result should be HTML-Code like <a href="./intern/rba/list" target="_blank">RBA List</a>


Solution

  • %= link_to 'RBA-List' => url_for('list_rba'), target => '_blank'