I just tried the Apache Wicket "Hello, world" application, and I noticed that in the HTML output, Wicket reveals its internal attributes.
Here's what the rendered HTML looks like in the browser’s “view source":
<html> <body> <span wicket:id="message" id="message">Hello World!</span> </body> </html>
How do I get rid of the wicket:id="message" attribute in HTML output?
source share