Dear All,
can you pls point me on how to loop through all objects (components) on a page?
TIA!
Dear All,
can you pls point me on how to loop through all objects (components) on a page?
TIA!
Hello!
Try next code:
pre$("[name=mobilecontainer1] >").each( function(e){
if (typeof e === "object") {
console.log(e);
})/prewhere:
"mobilecontainer1" - name of Mobile Container from your page
"console.log(e);" - just example. Any JS for elements processing.
awesome!