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