JMA
JMA

Reputation: 994

Bootstrap modal send request using post

I can send request to server using this code,

$('#wideModal').modal({remote: '/view/code-101'});

But it is using Get Method.

How can I send request using Post method? I have multiple data to be sent in server.

Upvotes: 0

Views: 567

Answers (1)

Dan H
Dan H

Reputation: 3623

As per the docs:

This option is deprecated since v3.3.0 and has been removed in v4. We recommend instead using client-side templating or a data binding framework, or calling jQuery.load yourself.

$('#myModal').on('show.bs.modal', function() {
    $.post( "/view/code-101", function( data ) {
        $('#myModal .modal-body').html( data );
    });
});

Upvotes: 1

Related Questions