I\'m using the below selector to get all the form inputs that are pre-populated with a value.
$(\'input[value!=\"\"]\');
This works great a
$('select').has('option[selected="selected"]')
will get the select element. jsFiddle example.