Hi there, I'm using the following code:
$.each($dataObj, function(index, value) {
$(index).html(value);
});
Which of course does not work since $(index) is not a valid syntax.
Each index in the object corresponds to a a unique div-id on the webpage, so what I want to do is to replace the html in all of the div-id's listed in the dataObj with 'value'. How do I do that?