SyntaxFix
Write A Post
Hire A Developer
Questions
Class selectors are prefixed with a dot. Your .find() is missing that so jQuery thinks you're looking for <myClass> elements.
.find()
<myClass>
var myVar = $("#start").find('.myClass').val();