I run an ajax request and return a json array. There is more in the json array than there is fields on the page. I want to cycle through text fields and find their NAME and match that to the json array and fill in the value.
The names of the fields and the names in the json array are the same.
<script type="text/javascript">
function loadIntake(){
var client = <?php echo $id ?>;
$.post("loadIntake.php",
{id: client},
function(jdata){
$.each(jdata, function(i, data) {
$('#' + i).val(data);
});
$('input[type=text]').attr("name", function(n, idata){
//$(idata).val(jdata.idata);
//alert (idata);
})
},
"json"
);
}
</script>
However, some of the fields are text fields, some are textfields, some are radio buttons, and checkboxes. As I said the json array has MORE fields than there are fields on the page. So I dont want to deal with unnecessary code runs.