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.

link|improve this question

75% accept rate
2  
Are you making these calls during onload? i.e. $(document).ready(function () { ... }); – jerluc Jul 4 '11 at 0:24
prepend to the first element in the body: examplale the first div – Ibu Jul 4 '11 at 0:28
Yes, this is called inside the document ready – Jason Child Jul 4 '11 at 0:30
1  
Thanks all, sure enough I was doing something silly, there was a typo in my "$(document).ready(function() {" line. Doi! – Jason Child Jul 4 '11 at 0:52
feedback

1 Answer

Wouldn't that result in visible html elements outside the body of the document?

Maybe that isn't allowed.

[Edit] The comments are correct, prepend appends inside the selected element.

link|improve this answer
1  
I don't think so. prepend injects it as the first child element. – davin Jul 4 '11 at 0:28
2  
From the JQuery Documentation on prepend: prepend() "Insert content, specified by the parameter, to the beginning of each element in the set of matched elements." – Jason Child Jul 4 '11 at 0:28
1  
I think that you're thinking of .before() – Jason Child Jul 4 '11 at 0:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.