Given the following html, is there a selector that allows me to get both based on type?
type
Try this
$("input:text, input:button");
This should help:
$('input[type="text"], input[type="button"]');