Hello,
I started using LimeSurvey this week and I have no experience with HTML and Javascript, so I guess my question is going to be a stupid one... Anyway, here I go:
What I want to do is, depending on the value of a Token attribute (in this case Y/N), I want to show different lines in a message/question. I've tried this:
<SCRIPT LANGUAGE=JavaScript>
var att = {TOKEN:ATTRIBUTE_1};
if (att = Y)
{
document.write("Attribute 1");
}
</script>
And it never shows anything, even though attribute_1 is equal to Y.
Sorry for my english.