I have javascript code which returns a partial view.
var url1="";
$.get(url1, { 'id': Gid }, function (result) {
$("#abcd").html(result);
});
View returning is
<div id="goalReport">
</div>
<script type="text/javascript">
function LoadReport() {
}
</script>
i want to call the load report function on success of the get function i wrote.
How can i call the load report function instead of appending it in a div abcd i tried like
result.LoadReport
but it is not working