Closed Ionaru closed 6 years ago
I am unable to remove my character from SkillQ. The error is: Uncaught SyntaxError: missing ) after argument list on this line:
Uncaught SyntaxError: missing ) after argument list
<td><span class='pull-right'><a href='#' onClick="verifyRemoval('Cap'n Proton', 92840153); return false;">X</a></span></td>
I think the quote (') in my character's name isn't properly being escaped.
'
I was able to remove the character successfully by editing the HTML and escaping the ' in my character's name so it looks like this: verifyRemoval('Cap\'n Proton', 92840153).
verifyRemoval('Cap\'n Proton', 92840153)
OK this hopefully addressees it, I tried to shortcut it earlier, meh
Looks good, verified 👍
I am unable to remove my character from SkillQ. The error is:
Uncaught SyntaxError: missing ) after argument list
on this line:I think the quote (
'
) in my character's name isn't properly being escaped.I was able to remove the character successfully by editing the HTML and escaping the
'
in my character's name so it looks like this:verifyRemoval('Cap\'n Proton', 92840153)
.