Hi,
I'd like to prepare a page using jsp, hiding an element in the jsp, then showing it using jquery later on, something like:
// index.jsp:
<%
<div id='hideme' style='hidden: true' >hello</div>
%>
<!-- At runtime: -->
$('#hideme').show();
What's the right way to hide the div in the jsp code such that the jquery hide()/show() methods will work correctly with it later on?
Thanks