My solution using jQuery:
var myValues = {};
$("#myDialog input").each(function(){
var input = $(this);
myValues[input.attr("name")]=input.val();
});