top of page

COMO ENVIAR DATOS DE UNA PAGINA A OTRA POR URL | WIX | TUTORIAL

Hey, aquí les traigo este nuevo video donde podrás ENVIAR DATOS DE UNA PAGINA A OTRA POR URL en Wix. No olvides subscribirte y comentar alguna pregunta!






PROJECTS PAGE CODE


 

// Velo API Reference: https://www.wix.com/velo/reference/api-overview/introduction import wixLocation from 'wix-location'; $w.onReady(function () { let query = wixLocation.query; console.log(query); if(query.secret){ $w("#section1col1title4").expand(); } });



 

HOME PAGE CODE


import wixLocation from 'wix-location'; $w.onReady(function () { $w("#button4").onClick(()=>{ wixLocation.to("/projects"); }) $w("#button5").onClick(()=>{ wixLocation.to("/projects?secret=true"); }) });



 

GRACIAS POR VER EL VIDEO



13 views0 comments

Recent Posts

See All
bottom of page