You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
standard HTML DOM query selectors to [locate DOM elements](https://developer.mozilla.org/en-US/docs/Web/API/Document_object_model/Locating_DOM_elements_using_selectors) as other native `JavaScript` methods like
959
+
`querySelector` or `querySelectorAll`.
944
960
945
-
The PyDom API is extensively described and demonstrated
946
-
[on this PyScript page](https://fpliger.pyscriptapps.com/pyweb/latest/pydom.html).
961
+
Following, we'll look into each one of these aspects a bit more in detail.
947
962
948
-
!!! warning
963
+
##### Element
949
964
950
-
PyDom is currently a work in progress.
965
+
`pydom``Element` is simply just an abstraction of a tranditional `Element` in a web page.
966
+
Every `Element` always maps to an underlying `JavaScript``Element` in a web page. These 2
967
+
elements are always in sync and any change of state in one is reflect into the other.
0 commit comments