0
votes
2answers
33 views

How to put double quote inside double quote

I have onclick event. And I want to put double quote inside it. for example: <a onclick="document.getElementById('my_div').innerHTML='<a href="omer.php">link_2</a>'"> link ...
0
votes
3answers
109 views

RegExp match a single quoted text without quotes - JavaScript

I'm sorry if it is a confusing question. I was trying to find a way to do this but couldn't find it so, if it is a repeated question, my apologies! I have a text something like this: ...
0
votes
4answers
242 views

Put a variable between double quotes

I have a small question: I have a function in javascript. var func = function(variable) { result = variable; } If I call func(rabbit); I need the result to be "rabbit". I cannot figure out ...
1
vote
3answers
449 views

Single Quote / Double Quotes : how to store in a variable

I need to create a variable storing dynamically generated HTML content. I don't know if the string declares attributes using single or double quotes. html_content=<?=$string;?>; The problem ...
0
votes
2answers
74 views

Java script : double quote text issue

I have a link which has navigateToBusiness("check & ' ""). Due to this double quote, script is not getting called. The value passed check & ' " is dynamic. Please help. Thanks in advance.
0
votes
4answers
295 views

Writing double quotes in javascript string

I'm using a method to iteratively perform a replace in a string. function replaceAll(srcString, target, newContent){ while (srcString.indexOf(target) != -1) srcString = ...
1
vote
3answers
1k views

Regular expression for apostrophes/ single quotes with double

I'm currently working with a regular expression (in Javascript) for replacing double quotes with smart quotes: // ie: "quotation" to &ldquo;quotation&rdquo; Here's the expression I've used ...
0
votes
2answers
83 views

Integration PHP + Javascript

I have a problem with integrations in the php code in javascript within single quotes I need to put the variable $video that will get the id of a YT video, instead of the id of the video ...
0
votes
2answers
105 views

String replace does not work in javascript (with double quotes)

Please look at the following code, If i do not perform the "Sanitary" steps in the function the code does not replace the string values. can some one help me understand this? Complete code : ...
0
votes
2answers
397 views

Double encode for JSON

In most of my AJAX functions I have to double encode free text entered by a user, i.e. I have to do encodeURIComponent(encodeURIComponent(myString)). If I do it just once most symbols except double ...
6
votes
4answers
425 views

what does ' ', and “ ”, and no quotes mean in Javascript?

I realized I've been switching between them with no understanding as to why, and am finding it hard to search for.
0
votes
1answer
319 views

C# form builder using JavaScript (onblur) to replace double quotes - conflict with 2 double quotes within single quotes

I'm modifying a custom form builder app written in C# by adding onblur to replace problematic characters like <> /\ and hopefully " . I can get all replaces to work except for the double quotes ...
0
votes
3answers
7k views

How to escape quotes and already escaped quotes in PHP before passing to Javascript?

There are many questions about escaping single and double quotes but I have had no luck finding an answer that solves my particular problem. I have a PHP function that dynamically returns an image ...
0
votes
2answers
474 views

Passing PHP string to HTML href" attribute apostroph problem

I am trying to pass a string from a PHP variable to HTML <a href="javascript:deleteProduct('<?=addslashes($row['productName'])?>');" The problem is with the apostrophes. The string might ...
7
votes
2answers
1k views

Is there any practical reason to use quoted strings for json keys?

According to Crockford's json.org, a json object is made up of members, which is made up of pairs. Every pair is made of a string and a value, with a string being defined as: A string is a ...
2
votes
2answers
2k views

Unterminated string literal in escaped html within JavaScript string

I'm seeing an issue with some javascript string literals, when encoding this value: Unencoded <!-- Start ValueClick Media 300x250 Code for Test Tag --> <script language="javascript" ...
1
vote
1answer
136 views

How can I use regular expressions and javascript to split the following command into tokens:

filter -n ""function(file) { return file.owner == "john"; }"" should be parsed into the following array: [ 'filter', '-n', 'function(file) { return file.owner == "john"; }' ]
34
votes
5answers
53k views

json parse error with double quotes

A double quote even if escaped is throwing parse error. look at the code below //parse the json in javascript var testJson = '{"result": ["lunch", "\"Show\""] }'; var tags = JSON.parse(testJson); ...