$say = \"hello\";$say.=\" world\";
var say = \"Hello\";say =+ \" World\";
var someString = \"Hello, \";someString += \"World!\";
I'm struggling with something that is probably very simple.
In php if I have a variable I can add to it easily like
And now $say will read "hello world"
How on earth can I do that in JQuery?
Thanks all.
I hope this helps someone else.
Thanks anyway... :D
I'm not expert with JavaScript or JQuery to be honest.
Thanks for the help in any case.