This one works, actually:
$('.open-submenu > a').append("<span class='open-submenu-sym'>+</span>");
I would like to change the former to:
var open-string = "<span class='open-submenu-sym'>+</span>";
$('.open-submenu > a').append(open-string);
but it seems not working...I tried also $('.open-submenu > a').append('' + open-string);
and $('.open-submenu > a').append("" + open-string);
but still doesn't work...is it possible to accomplish that?