Every line of 'jquery loop through all elements with id starting with' 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.
20 function $id( id, arr ){ 21 if( Array.isArray( arr ) ){ 22 const res = []; 23 24 for( let i = arr.length; i--; ){ 25 const x = arr[ i ].getElementById( id ); 26 if( x ) res.push( x ); 27 } 28 29 return res; 30 } 31 32 return arr.getElementById( id ); 33 }
113 public async getElementById(id: string): Promise < any > { 114 let el: any; 115 await asyncForEach(this.availableServices, async (s: any) => { 116 await asyncForEach(this.serviceMap[s.name].resources, async (r: Resource) => { 117 const element: any = r.getElement(id); 118 if (element && element.data) { 119 const data = (element.data as BehaviorSubject).getValue().data; 120 el = data; 121 } 122 }); 123 }); 124 return this.clone(el); 125 }
6 function $id(id) { 7 return document.getElementById(id); 8 }
9 function $id(id) { 10 return document.getElementById(id); 11 }
29 function $id(id) { 30 return doc.getElementById(id); 31 }
3 export function $id(id) { 4 return $("#" + id); 5 }
210 function elemId(id) { 211 return document.getElementById(id); 212 }
29 function id(idStr) { 30 return document.getElementById(idStr); 31 }
145 export function $(id) { 146 id = id[0] === '#' ? id.substr(1, id.length) : id; 147 return document.getElementById(id); 148 }
183 function domGetElementById(document, id) { 184 return document.getElementById(id); 185 }