[jQuery] Load updated data to exisiting table

[jQuery] Load updated data to exisiting table

hi all i got codes like this
views/admin/order_home
[php]
<script type="text/javascript" src="<?php echo base_url(); ?>js/
jquery.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>js/
jquery.form.js"></script>
<script type="text/javascript">
// wait for the DOM to be loaded
$(document).ready(function() {
        $("#msg").hide();
         // bind 'myForm' and provide a simple callback function
$('#myform').ajaxForm(function() {
             //nampilin di div message string yg ada di dalam html()
             $("#msg").html("Berhasil update order").fadeIn(1500);
                $("#msg").fadeOut(1500);
            });
});
</script> <h1><?php echo $title;?></h1>
<?php
if ($this->session->flashdata('message')){
    echo "<div class='message' name='msg' id='msg'>".$this->session-