Snippets Collections
// Get all elements with the class "jet-form-builder-file-upload__content"
2
var fileUploadContentDivs = document.querySelectorAll('.jet-form-builder-file-upload__content');
3
​
4
// Iterate through each div
5
fileUploadContentDivs.forEach(function (div) {
6
    // Check if the div has any content
7
    if (div.innerHTML.trim() !== '') {
8
        // If content exists, display the div
9
        div.style.display = 'block';
10
    } else {
11
        // If no content, hide the div
12
        div.style.display = 'none';
13
    }
14
});
15
star

Sun Feb 11 2024 21:21:10 GMT+0000 (Coordinated Universal Time)

#div #show-and-hide

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension