Ajax problems with Firefox 86

Asked

Viewed 10 times

0

I have an application using Spring Boot, Bootstrap and jQuery running in Firefox. In the combo there is an ajax call. During the GET request, the screen objects disappear and when the combo returns loaded, the objects continue not to appear.

Below is the ajax code request:

function carregaComboAtivoAjax(url) {
    var uoId = document.getElementById('idUo').value;
    $.ajax({
        type: 'get',
        url: url,
        dataType: 'html',
        data: { uoId: uoId },
        success: function(data) {
            if (data != null) {
                 $("body").html(data);
            }
        }
    });
}

In the image below is what happens in the visual:

inserir a descrição da imagem aqui

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.