Currently, I am utilizing bootstrap and jquery to accomplish a specific task. My goal is to select the first child class after all columns on the webpage.
var one = $(".col-x .some-class")
Afterwards, I aim to obtain the height of all elements with the .some-class
attribute and identify the tallest among them.
The exact objective I am striving for involves:
1- Finding the tallest height between .some-div
elements and adjusting the others to match by adding top and bottom padding.
2- Implementing this function for each row while ensuring that each row receives the tallest height of .some-class
elements.
If my explanation is unclear, please inform me so I can provide a code example.
Feel free to view the demonstration on JSFiddle: https://jsfiddle.net/Devel0per95/g2eo4n38/2/