I have simple button and input text:
<p:button id="someBtnID" value="Join" />
<p:inputText id="someID" placeholder="ID" />
I want on button click get value from input text, concat it and do redirect.
For example: I have link domain.com/folder/action=
input text value = 11025
I need concat value from input text here and do redirect to domain.com/folder/action=11025
Can I do it without binding with any bean in JSF but on frontend?