Hey all. Making a dynamic process to do stuff with elements. So far it is going well, being able to change values, hide and collapse with dynamic naming like this:
$w("#chk" + arrSections[iCurrent])
So I’m comming to a part that I may need to do it with more power. Above is still one at a time where you ‘know’ the name. Only I get it from a array entry and a prefix. I’m trying a wild card. Am I correct this isn’t possible?
$w('[id^="chk"]' ).checked = false;
Okay above I’m already trying stuff. The ‘#’ and ‘$’ are also jquery items so I thought maybe I could misuse the jquery method for starting with too