jQuery.noConflict();
(function( $ ) {
$(function() {
$( "#success" ).load( "https://iweb04.itarget.com.br/itarget.com.br/newclients/sbpz-palestrantes-2024/palestrantes/", function( response, status, xhr ) {
if ( status == "error" ) {
var msg = "Sorry but there was an error: ";
$( "#error" ).html( msg + xhr.status + " " + xhr.statusText );
}
$('#conteudo').html(response);
});
});
})(jQuery);