$.ajax({
            url : _url,
            type : 'GET',
            dataType : 'html',
            xhrFields: {
                withCredentials: true
            },
            success : function(result){
                $(dom).html(result);
            }
        });