What is a Split Button For?

split buttons multiple

A split button has two components; one is the label and the other is an arrow. The purpose of the arrow is to open a dropdown with the set of actions. Whereas clicking on the label takes to the default action. In this tutorial, I will show you creating the Split buttons by using custom … Read more

How to Create Zebra Striped Tables?

striped table bootstrap

Just like zebras that have distinctive black and white stripe coats. You may create tables in your web pages where one row is distinctive to the other row. The simple way of creating a striped table is using the nth-child() selector

How to change Bootstrap Modal Width and Height – 3 Examples

bootstrap modal custom size

Changing Bootstrap 3 modal size properties In order to increase or decrease the modal window height and width properties of Bootstrap, you need to get the modal related classes and use desired values either in the <style> section or in your external CSS file. In either case, you have to use it after the reference … Read more

How to Add, Remove and Toggle classes by JavaScript and jQuery?

jquery toggleclass

Add, remove, and toggle classes in HTML elements To add, remove, or update the class(es) attached to HTML elements, you may use jQuery and JavaScript. The jQuery has addClass, removeClass, and hasClass methods that can be used for adding, removing, or updating the classes. Similarly, you may use the className and classList attributes of JavaScript, if … Read more