Hi,
I am trying to use a string that contains double quotes in the title attribute of an anchor. So far I tried these:
<a href=".." title="Some \"text\"">Some text</a>
<!-- title looks like `Some \` --!>
and
<a href=".." title="Some "text"">Some text</a>
<!-- title looks like `Some ` --!>
Please note that using single quotes is not an option.
Thanks a lot!