Hello, I have a script which is as follows (not written by me), and would like to get the value of "content" in this case to be displayed on the screen for test purposes, how can I do this?
<script type="text/javascript">
$(document).ready(function (){
var content = $('#menu-upper').html();
$('#menu-upper').html('');
$('#menu-lower').html(content);
});
</script>