G
Gerald Aichholzer
Hello,
I need to specify the following attribute in an xhtml-file
containing TAL templates:
<div tal:attributes="onMouseOver concat('func(',xyz,')')">
which results in
<div onMouseOver=func( )>
^
value of xyz here
My problem is, that I need to put quotes around the content
of xyz:
<div onMouseOver=func(' ')>
How can I achieve this? The double quotes are already in
use by tal:attributes, the single quotes are used by the
concat-function.
thanx in advance,
Gerald
I need to specify the following attribute in an xhtml-file
containing TAL templates:
<div tal:attributes="onMouseOver concat('func(',xyz,')')">
which results in
<div onMouseOver=func( )>
^
value of xyz here
My problem is, that I need to put quotes around the content
of xyz:
<div onMouseOver=func(' ')>
How can I achieve this? The double quotes are already in
use by tal:attributes, the single quotes are used by the
concat-function.
thanx in advance,
Gerald