i’m using $.post() to send result to the controller and model. it outputs a whole page with all tags.. , .. so on. i want to process those outputted data. how can i do this? for an example below code, i want to get the value of id=’myid’ within outputted data.
$.post(url, function(data) {
alert(data.getElementById('ContentPane').html());
});
help much appreciated.
didn’t work for me but then i used
it worked! thanks!