Acessing HTM from a $.Get request?

Acessing HTM from a $.Get request?

Hi

I am running a get request which builds a table and inserts the HTML

$(document).ready(function() {
            $.get("highleveltable.php",
        function(data){
                                    $("#widget01-table").html(data).dataTable({
                                                'bJQueryUI': true,
                                                'bProcessing': true,
                                                'bFilter': false,
                                                'bLengthChange': false
                                                }).hide().slideDown(1000);         
                                                });        
                        });


 


The problem I am having is accessing the HTML table after the request. It's as though the browse doesn't actually see it?

Any ideas?

Thanks