You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an <ul> which contains large number of <li> elements. But only a few of them are visible on view( list has a scroll so others are not visible until you scroll ).
Actual Scenario : When I call Feedback() function it takes upto 60 seconds because it parse all the elements including those which are not visible on view too. Required Scenario: It should only parse those elements which are visible on view to avoid performance hit.
The text was updated successfully, but these errors were encountered:
I have an
<ul>
which contains large number of<li>
elements. But only a few of them are visible on view( list has a scroll so others are not visible until you scroll ).Actual Scenario : When I call
Feedback()
function it takes upto 60 seconds because it parse all the elements including those which are not visible on view too.Required Scenario: It should only parse those elements which are visible on view to avoid performance hit.
The text was updated successfully, but these errors were encountered: