bootstrap 4 modal w3 code example
Example 1: jquery display modal bs4
$('a[href$="#Modal"]').on( "click", function() {
$('#Modal').modal('show');
});
Example 2: html data-target modal
$('#myModal').modal('show')
$('a[href$="#Modal"]').on( "click", function() {
$('#Modal').modal('show');
});
$('#myModal').modal('show')