How to add and remove a class when the bootstrap popup is scroll [ #2023]

if you need scroll to whole popup (class=”modal”): $(function () { $(‘.modal’).scroll(function () { var totop = 50; if ($(this).scrollTop() >= totop) { $(“.mycountry”).addClass(“fix”); } else { $(“.mycountry”).removeClass(“fix”); } }); }); if you need scroll to modal content (class=”modal-content”): $(function () { $(‘.modal-content’).scroll(function () { var totop = 50; if

Read More »

How to install Ionic 3

Ionic is open source framework used for developing mobile applications. It provides tools and services for building Mobile UI with native look and feel. Ionic framework needs native wrapper to be able to run on mobile devices. This is an introductory tutorial, which covers the basics of the Ionic Open Source

Read More »
No data found.