9 examples of 'jquery hidden' in JavaScript

Every line of 'jquery hidden' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
12function filterHidden( elem ) {
13 while ( elem && elem.nodeType === 1 ) {
14 if ( getDisplay( elem ) === "none" || elem.type === "hidden" ) {
15 return true;
16 }
17 elem = elem.parentNode;
18 }
19 return false;
20}
71function is_hidden(el) {
72 // Fast track: look if style is set
73 if (el.style.display === 'none') return true;
74 if (el.style.display) return false;
75
76 var cs = window.getComputedStyle(el);
77 return (cs.display === 'none');
78}
73function removeHidden(element) {
74 html.removeClass(element, 'hidden');
75}
208function findHiddenInput(elem) {
209 if (elem.name && elem.name === 'input' && elem.attribs) {
210 if (elem.attribs.type === 'hidden') {
211 return true;
212 }
213 }
214 return false;
215}
51set hidden(flag)
52{
53 this._element.classList.toggle("hidden", flag);
54}
426function hiddenInputValidationToggle(id){
427 var element = jq("#" + id);
428 if(element.length){
429 if(element.css("display") == "none"){
430 jq(":input:hidden", element).each(function(){
431 jq(this).addClass("ignoreValid");
432 });
433 }
434 else{
435 jq(":input:visible", element).each(function(){
436 jq(this).removeClass("ignoreValid");
437 });
438 }
439 }
440}
179}).on('hidden.bs.dropdown', '.dropdown', function hhidden() {
180 // always reset after close
181 $(this).removeClass('dropup');
182});
68export function ariaHidden(ele: HTMLElement, isHidden: boolean) {
69 if (isHidden) {
70 ele.setAttribute('aria-hidden', 'true');
71 } else if (ele.hasAttribute('aria-hidden')) {
72 ele.removeAttribute('aria-hidden');
73 }
74}
21function isElementHidden(el){
22 //https://stackoverflow.com/a/21696585
23 return el.offsetParent == null
24}

Related snippets