I am trying to get the value of an input text field.
the HTML is:
Class selectors are prefixed with a dot. Your .find() is missing that so jQuery thinks you're looking for elements.
.find()
var myVar = $("#start").find('.myClass').val();