I'm trying to use jquery to prepend a couple of hidden input tags to the start of the body of my JSP.
$("body").prepend('<input id="SCROLL_OFFSET_X" name="SCROLL_OFFSET_X" type="hidden" value="<%=myJSPPageVariableX%>"/>');
$("body").prepend('<input id="SCROLL_OFFSET_Y" name="SCROLL_OFFSET_Y" type="hidden" value="<%=myJSPPageVariableY%>"/>');
For some reason these are not appearing when I use firebug to view the HTML. Am I doing something wrong here?
Kind Regards,
Jason.
$(document).ready(function () { ... });– jerluc Jul 4 '11 at 0:24