I need to prepend h1 to #columns but after #left_column, now it is before it. Here is the code:
<script type="text/javascript">
$(init);
function init() {
$('h1').prependTo('#columns');
}
</script>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
.appendTo('#left_column')is the obvious suggestion, but will append before the column is closed (cheers Rory, in comments).If you want it to go after the column, use
.after('#left_column').