Javascript examples for jQuery:String
Extract a string up to a symbol
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(window).load(function(){//from www . j a v a2s . co m $(function(){ var name="Jon's"; var result=name.split("'")[0] console.log(result); }); }); </script> </head> <body> </body> </html>