Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following string:

'You've just created'

When I assign this string to a JavaScript variable, this is interpreted as 2 strings because there's a ' character.

How can I escape it?

share|improve this question
1  
When you say ‘pass it to a variable’, what do you mean? Are you simply defining a static variable, or using server-side code to generate JavaScript code with the variable in it? If the latter, you should look at using a JSON encoder to create your JavaScript literals. – bobince Oct 28 '10 at 12:23
@bobince: hmm... I assumed the former when tidying up the question grammar, but now that you mention it, the issue could be the result of outputting unescaped strings from the server. – Andy E Oct 28 '10 at 12:24

2 Answers

In JS code blocks, use a backslash:

var text = 'You \'ve just created'

in JS inside HTML, use a HTML entity:

<a onclick='alert("You &apos;ve just created");'>
share|improve this answer

You can use either " or ' to quote a string, so you could do it this way:

"You've just created"

or you can use a \ to quote just one character:

'You\'ve just created'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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