JQuery .load JSP File -
i trying load jsp file. jsp file getting load jstl tags inside jsp not getting rendered. thoughts? process.jsp has jstl tags not getting rendered.
<script> $(document).ready(function(){ $("button").click(function(){ $("#holder").load("/process.jsp"); }); }); </script> <button>get data</button> <div id="holder"> </div>
never mind, tags scope not define. works
Comments
Post a Comment