javascript - " changes to double quotation mark -


my problem right have piece of text in function call inside onclick. can swear double quotation mark encoded " whole thing breaks down because changes somehow normal double quotation mark.

usshow("lcd tv 0-23" sony"); 

i have add built dynamically in js.

does js changes encoded characters original form on fly, or there i've never understood coding?

usshow("lcd tv 0-23\" sony"); 

simple, huh? there's solution:

usshow('lcd tv 0-23" sony'); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -