Why doesn't this work?:
var backlink = readCookie("sty le");
if (backlink == ('medium' || 'large' || 'huge')) {
document.write( " ... ");
}
It works if 'backlink' equals medium, but doesn't work on the others.
What am I missing?
-- Richard
var backlink = readCookie("sty le");
if (backlink == ('medium' || 'large' || 'huge')) {
document.write( " ... ");
}
It works if 'backlink' equals medium, but doesn't work on the others.
What am I missing?
-- Richard
Comment