I'd go for the obvious:
Code:
//Optional, manual description for particular pictures inside album
//Syntax: albumid.desc[Pictures]="Picture description here"
myvacation.desc[0]="<a href='someother.htm'>Strawberry Cheesecake $20.00</a>"///Would like for this to be a hyperlink to another page
Just pay particular attention to the nested quotes (red). They're single ('), not double("). Javascript syntax requires that nested quotes be either escaped, or (as I have shown here) of a different type than the outer quotes. Here it's easiest to simply use a different type. Escaping (although it can be used at any time) only becomes necessary when there are quotes nested within already nested quotes.
Bookmarks