I’m doing some stuff with javascript and I’m wondering, how do I put an apostrophe in a string in javascript?
theAnchorText = 'I apostrophe M home';
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use double quotes instead of single quotes:
Alternatively, escape the apostrophe:
The backslash tells JavaScript (this has nothing to do with jQuery, by the way) that the next character should be interpreted as “special”. In this case, an apostrophe after a backslash means to use a literal apostrophe but not to end the string.
There are also other characters you can put after a backslash to indicate other special characters. For example, you can use
\nfor a new line, or\tfor a tab.