I am trying to get the raw html code(what I see in chrome source code window) in JQuery. I have tried html(), but it is converting all of quotes to ". I have tried text(), but it is the opposite, converting html symbols to text. I have the following source code in my browser, I want to remove the & #034; text, but I could not get it with above mentioned methods. How can I get it?
{
"description": "RUS/SANKT-PETERBU/Hotel "ANNUSHKA""
},
text method is showing the following:
{
"description": "RUS/SANKT-PETERBU/Hotel "ANNUSHKA""
},
html method is showing the following:
{
"description": "RUS/SANKT-PETERBU/Hotel "ANNUSHKA""
},