Trying to display Bootstrap Modal in electron.
const $ = require('jquery');
require('bootstrap');
$(document).ready(() => {
$('#myModal').modal();
});
$(...).modal is not a function.
What is the reason and how to implement it?
Try please your app with this code
var myModal = new bootstrap.Modal(document.getElementById('myModal'), options)
I met Bootstrap modal issue in ElectronJS in before. It was work well with this code.