Title: angryben's Replies | WordPress.org

---

# angryben

  [  ](https://wordpress.org/support/users/angryben/)

 *   [Profile](https://wordpress.org/support/users/angryben/)
 *   [Topics Started](https://wordpress.org/support/users/angryben/topics/)
 *   [Replies Created](https://wordpress.org/support/users/angryben/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/angryben/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/angryben/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/angryben/engagements/)
 *   [Favorites](https://wordpress.org/support/users/angryben/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPtouch - Make your WordPress Website Mobile-Friendly] WPtouch v4.3.20 hasn’t fixed the bug](https://wordpress.org/support/topic/wptouch-v4-3-20-hasnt-fixed-the-bug/)
 *  Thread Starter [angryben](https://wordpress.org/support/users/angryben/)
 * (@angryben)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wptouch-v4-3-20-hasnt-fixed-the-bug/#post-9564664)
 * [@oxymoron](https://wordpress.org/support/users/oxymoron/)
 * Thank you for fixing it so fast.
 * There is another issue.
 * It doesn’t escape double quotes correctly.
 * Try the code below
 * <script>
    $(“.post-page-content”).prepend(“<h1 id=\”tmp\”>hello world</h1>”);
   </script>
 * \” will be unescaped to ”
 * But these code works well：
 * <script>
    $(“.post-page-content”).prepend(‘<h1 id=\’tmp\’>hello world</h1>’);
   </script>
 * <script>
    $(“.post-page-content”).prepend(‘<h1 id=”tmp”>hello world</h1>’); </
   script>
 * <script>
    $(“.post-page-content”).prepend(“<h1 id=’tmp’>hello world</h1>”); </
   script>
 * You are supposed to see the <h1> element on the page.

Viewing 1 replies (of 1 total)