Tagged Questions
23
votes
5answers
28k 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); ...
2
votes
2answers
806 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
89 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"; }' ]
0
votes
3answers
126 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
294 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 ...
-1
votes
3answers
81 views
javascript quotes problem inside array elementt
<html>
<body>
<script type="text/javascript">
var i=blue;
var mycars = new Array();
mycars[0] = "'Sa'+i+'b'";
for (i=0;i<mycars.length;i++)
{
document.write(mycars[i] + ...