I have used below code to append link tag in head section. It is having below behavior 1. I am able to see the attached link tag in firebug but not in page souce 2. my head section belongs to a different jsp file
Can i get some tips on this? Below is the script I have used in body section
<script type="text/javascript">
var appendHTML= "<link rel='next' href='http://test.com'/>";
$('head').append(appendHTML);
</script>
Thanks, Abhishek