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

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -