Welcome Guest, Not a member yet? Register   Sign In
Send data from DB to bootstrap modal's
#2

You can use jquery for this task

PHP Code:
<a href="#" id="modal-trigger" data-toggle="modal" data-target=".bs-example-modal">Test </a>

$(
'#modal-trigger').click(function(){
    $(
'.modal-title').html('your title ...');
    $(
'.modal-body').html('your content <strong>goes here</strong>!');
}); 

You have to extend the example, to pass the different content dynamicly to the modal template.

Reply


Messages In This Thread
RE: Send data from DB to bootstrap modal's - by Rufnex - 01-27-2015, 01:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB