0

I have <h:form prependId="false" id="productDescription"> and when rendered to html:

<form id="j_idt143:0:productDescription" name="j_idt143:0:productDescription" method="post" action="/WatchesStore/product-detail.jsf" enctype="application/x-www-form-urlencoded">

I want clear id:"j_idt143:0:" after rendered to html. Please help me solved this problem.

Keiwan
  • 8,031
  • 5
  • 36
  • 49

1 Answers1

-3
<h:form prependId="false"> 

Change id="j_idt143:0:productDescription" to id="productDescription"

Lovepreet Singh
  • 4,792
  • 1
  • 18
  • 36
Fred
  • 1