この関数を動的に作成しようとしています:
svg.path($('#shape23'),
path.move(333,410)
.smoothC(333,410,333,410)
.smoothC(217.5,415.75,217.5,415.75)
.smoothC(333,500,333,500)
.close(), {fill: '#CCCCCC'});
...2 番目の引数の変数値 (path.move から close() まで):
var myPath = 'path.move(333,410)';
myPath += '.smoothC(333,410,333,410)';
myPath += '.smoothC(217.5,415.75,217.5,415.75)';
myPath += '.smoothC(333,500,333,500)';
myPath += '.close()';
svg.path($('#shape23'), myPath, {fill: '#CCCCCC'});
...しかし、解析エラーが発生しています。
残った髪を引き抜く前に誰か助けてくれませんか?