Javascript examples for String Operation:String Replace
Use Regular expression to replace quotation mark
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){/*from w w w . jav a 2 s . co m*/ $('#x').append('\'hello"'.replace(/["']/g,'')); }); </script> </head> <body> <p id="x"></p> </body> </html>