Using the jQuery plug in http://www.ericmmartin.com/projects/simplemodal/
I have a simple model div. When it opens, the div scrolls to the bottom of the text. Is this a feature, and if so, how do I get the div to not scroll the contents to the bottom when the SimpleModal shows?
I have tried to force it to scroll to the top.
$(function () {
$('#agreement-modal-content').modal(
{
autoResize: true,
onShow: function (dialog) {
$('#agreement-modal-content').scrollTop();
}
}
);
});
$('#agreement-modal-content').modal( { focus: false, <<<---- Set to false