I am just simply trying to append a variable to an html element using jquery. Where am I going wrong?
var simple = $('<p> hello </p>');
$('.easy').append(simple);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="easy"> </div>
Thanks so much!