How can I update the Bootstrap class .row-eq-height
to have display: block;
for mobile only?
This is what I've tried.
$(document).ready(function() {
if ($(window).width() <= 768) {
$( ".row-eq-height" ).css( "display", "block" );
}
});