I want to reload a particular div on ajax:success but it is reloading the complete page in that div 
$.ajax({
    type: "GET",
    url: "http://192.168.2.210/sciAuthor1/personaldetails/cropImage",
    cache: false,
    success: function (response) {
        parsed = $.parseJSON(response);
        var path = "http://192.168.2.210/sciAuthor1/img/upload/" + parsed;
        $('#up_img').load('http://192.168.2.210/sciAuthor1/user/profile/1'+ '#up_img');
        $edit_dialog.dialog('close');
    }
});
div which i want to reload 
<div class="txtc" id="up_img">
   <?php
        $img_path = Commonfunctions::ProfileImage();
        echo $this->tag->image(array('id'=>"profile_image",$img_path,"class"=>"profile_img")) ;
   ?>
</div>
After running this code it reloads the complete page in #up_img.
 
    