Got what is probably a simple one, but my google is failing me at the moment so hoping i can get a bit of a push in the right direction
I have a HTML page that is ba
Bootstrap modal doesn't support this functionality. But you could write your own?
function showModal(score){
$('#myModal .score').html(score);
$('#myModal').modal('show')
}
so clicking the calculate results what look something like this.
$('#buttonCalcResults').click(function(){
var score = foo+bar+whatever
showModal(score);
})