I've been trying to get this taken care of, and it doesn't seem to want to work. I've scoured the internet and stackoverflow for an answer, but I can't seem to find anything that actually works for this. If anyone can help me out here, that would be awesome!
<html>
<head>
<script rel="javascript" type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js">
$(document).ready(function(){
$(".box").html("sing!!!!");
});
</script>
<style>
.box{
border:2px solid black;
padding:12px;
}
</style>
</head>
<body>
<div class="box">
This will be replaced with a JQuery statement.
</div>
<p>
This is text to be left UNALTERED.
</p>
</body>
</html>