I\'m a jQuery newbie and have rigged Simple Modal to allow me to have more than one modal on a page by doing this in my script:
$(\'input.basic, a.basic\').click(f
I would suggest something like:
Links:
link1
link2
link3
Hidden content (via CSS or inline style)
JavaScript:
$(document).ready(function () {
$('#basic-modal input.basic, #basic-modal a.basic').click(function (e) {
e.preventDefault();
var content = '#' + this.id + '-content';
$(content).modal();
});
});
Something like that should do the trick.