What is the best way to enforce
Code: Select all
style="display:none;"Code: Select all
class="content-section"Best regards
Tshitshi
Code: Select all
style="display:none;"Code: Select all
class="content-section"Code: Select all
<script>
$(document).ready(function(){
$('.content-section').hide();
$('.content-section:first').show();
});
</script>