VOOZH about

URL: https://www.geeksforgeeks.org/bootstrap/bootstrap-5-list-group-javascript-behavior/

⇱ Bootstrap 5 List group JavaScript behavior - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bootstrap 5 List group JavaScript behavior

Last Updated : 26 Jul, 2024

Bootstrap5 list group JavaScript behavior is used to generate tabbable panes of local material by expanding our list group.

Bootstrap 5  List group JavaScript behavior:

  • Using data attributes: We can enable the List group by using data attributes without using any javascript code. We need to pass data-bs-toggle = "list" on the element and .list-group-item on the list of elements.
  • Via JavaScript: We can also activate the bootstrap lit group via javascript.
  • Fade effect: We can add a .fade  class to each .tab-pane to have the tabs panel fade in. For the original content to be displayed, the first tab pane also has to have a .show
  • Methods: Methods are used to undertake different specific actions on the list group, We have some methods like constructor, show, dispose of, getInstance, and getOrCreateInstance.
  • Events: Events are used to perform some of the basic functionalities. Some of the events are automatically triggered when we call the corresponding method.

Example 1: In these, we will demonstrate the bootstrap 5 list group.

Output:

👁 Image

Example 2: In this example, we will demonstrate bootstrap 5 list group fade effects.

Output:

Reference: https://getbootstrap.com/docs/5.0/components/list-group/#javascript-behavior

Comment

Explore