My problem is driving me nuts.
I have declared som variables like this
var tip01 = "This is my first tip";
var tip02 = "This is my second tip";
Depending on the value in my querystring I want to write out my tips.
my querystring: ex ?myQSvalue=01
var myQSvalue = getQueryString('myQSvalue');
var myTip = 'tip' + myQSvalue;
$("#output").html(myTip);
But the output is: tip01 insted of This is my first tip.
How can I achieve this and output the content in my declared varable?
Thank you.