Elements are little different because the value is part of the style object. GSAP has a helper to get those style values for you. https://greensock.com/docs/v3/GSAP/gsap.getProperty()   gsap.to("#Poker_presentaciones", { duration: 5, x: 500, onUpdate() { console.log(gsap.getProperty(this.targets()[0], "x")); } });   Using the getter function. const element = document.querySelector("#Poker_presentaciones"); const getter = gsap.getProperty(element); gsap.to(e
    • Like
    1