i am using the cluetip plugin and the simple use case is to to put the content in a title attribute, like below:

<a title='Top title|detail content'>Text</a>

i am now running into issues where the string that is inside "detail content' has an apostrophe inside of it and it seems to confuse cluetip plugin. Is there anyway to escape or encode an apostrophe to allow cluetip to work properly.

link|improve this question

In .net 4.0 System.Web.HttpUtility.HtmlEncode works, but in 3.5 for some reason it skips single apostrophes. You can use System.Security.SecurityElement.Escape if you're in 3.5. – Hardwareguy Oct 14 '11 at 19:14
feedback

3 Answers

up vote 3 down vote accepted

You're looking for &apos;.
See HTML entities.

link|improve this answer
is there an method in the .net 3.5 library to take a string and convert all of these characters like apostrophe and convert them to their equivalent (&apos; in this case) – leora May 23 '11 at 3:30
@ooo: HttpUtility.HtmlEncode – SLaks May 23 '11 at 3:37
htmlEncode method doesn't seem to do anything to apostrophes. – leora May 23 '11 at 3:58
@ooo: Sorry; HtmlAttributeEncode. (But you also need to use double-quoted attributes) – SLaks May 23 '11 at 13:05
@ooo you're right, but they did fix it in .net 4.0 – Hardwareguy Oct 14 '11 at 19:06
feedback

have you tried HTML escaping the apostrophe?

link|improve this answer
1  
That's his question. – SLaks May 23 '11 at 2:30
feedback

You'll want to use &#39; per this link since &apos; has flaky browser support. See this old post for more info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.