Hi,
I have 2 screens in my app, both screens have common components, but laid out differently.
This works fine when these components are formatted with CSS, as I have different CSS for each component.
However, the CSS I have used doesn't work below Android 4.4, so, to get around this, I have programatically created JS to format the page if required.
So, is there any way to position objects with the same name on different screens differently with JS?
my thoughts would be somehow a derivative using:
Appery("object1 on screen1").css("top","20px");
Appery("object1 on screen2").css("top","100px");
I just need to know if there is a way of addressing the object within a page.