Problem connecting an image to another page
So I have a page with a “job description”. When you press apply you are sent to an “application page”
I’ve set it so that information from the job page automatically fills in two user input and a head using session memory.
I’m trying to get it to also transfer the same logo over from the previous page but everything I’ve tried isnt working. The code I am using is
- session.setItem(‘logo’, $w(‘#Logo’).image)
It’s not recongising this, red flags it???
On the second page I am using
-
let logo = session.getItem(‘logo’);
-
$w(‘#CompanyLogo’).value = logo;
Again it’s red flagging???
Any ideas