firefox - Adding items in DOM with jQuery without browser scrollbar update -


i adding many <li> <ul> using jquery append method.

when there more <li> browser space can accomodate, expected vertical scrollbar enable scrolling doesn't show @ all.

i have tried in firefox , chrome , effect same.

it sounds have css issue. scrollbars determined css overflow property.

try

#myul {   overflow:scroll; } 

or

#myul {   overflow:auto; } 

Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -