CSCI E-3 Fiddle Forked
HTML
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.min.js"></script>
<h2>Hello there!</h2>
<div id="helloworld"></div>
CSS
#helloworld {
color: orange;
}
JavaScript
var name = prompt("What is your name?");
document.getElementById("helloworld").innerHTML="This is going to be a lot of fun! Welcome to CSCI E-3, "+name;
$("#helloworld").draggable();