Javascript examples for jQuery:Text
slice dynamic text in javascript
<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(){/* www . j a va 2 s. co m*/ var stringName = "101 Main City (D23)"; stringName = stringName.replace(/(\(.*\))/, ""); $("body").html(stringName); }); </script> </head> <body> </body> </html>