I’m able to get my code working from a dynamic page using this code:
$w.onReady(function () {
$w("#moviedataset").onReady(() => {
product_name = $w("#text3").text,
movieitem = $w("#moviedataset").getCurrentItem()._id;
});
However, if I want to reference a specific dynamic page from another, separate page, how would I change the code?