Duplicate selected div and insert it before another div - https://api.jquery.com/clone/ (DO NOT CLONE #mobileMenu)
<script> $(document).ready(function() { $( "#DIVNAME" ).clone().insertBefore( "#DIVNAME" ); }); </script>