Jquery $ajax not working in Non flash browser

Jquery $ajax not working in Non flash browser

Hi all,

 I have 2 pages the first page have script tag with fusion charts latest javascript supported code.. that page called my a main page..using jquery ajax.

The response will come.. If browser have Flash support then its working fine.... But If the browser is non-flash supported browser mean its not working.... its give some script error.. and blank page..

source
----------
$.ajax({
    method: "get",
    url: url_str,
    dataType: "html",
    success: function( strHTML )
    {
        $( "#Tab" ).html( strHTML );
        // Log updated HTML.
        console.log( $( "#measuresTab" ).html() );
    }
});



Note
-------
* If is use console.log then its give script error.. if i command it its not give any error .. but the page blank..

* Pls give me a good solution for this error...

thanks
Saravanan.A