jquery - Scroll modal on show -
i'm using jquery show bootstrap modal, unable scroll until manually click inside it.
i've tried focus():
$('#action-modal-body').focus()
i've tried click():
$('#action-modal-body').click()
i've added delay account modal animation:
settimeout(function (){ $('#action-modal-body').click() }, 1000);
now bootstrap 3 events has change can achieved (plus smooth animation top)
$('#modalidhere').on('shown.bs.modal', function () { $('#modalidhere').animate({ scrolltop: 100 }, 'slow'); });
Comments
Post a Comment