However I am not sure how to get to the ID of the div i.e. "section_4" once I hit the event triggered code. I can access the event.detailRow but how do I get the Div's ID??
function displaySectionDataByType(event) {
alert(event.detailRow);
$("#section_4").html("Blah updated by the function from here");
}
Is it possible to pass any other arguments into the function, once more any help would really get me moving again.