Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSF <h:outputlink> navigate to new tab [closed]

Tags:

jsf

Im using JSF h:outputlink. I want to open a new tab onclick of that link. Please suggest me the simplest way to do this.

like image 547
user2531406 Avatar asked Mar 27 '14 08:03

user2531406


1 Answers

Try this,

 <h:outputLink value="xxx.html" target="_blank">URL</h:outputLink>

Read h:outputLink fore mo information.

like image 102
Adarsh Avatar answered Nov 10 '22 05:11

Adarsh