JQuery.parseJSON with string - Javascript jQuery

Javascript examples for jQuery:Json

Description

JQuery.parseJSON with string

Demo Code

ResultView the demo in separate window

<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. ja  v  a  2  s . co m
    var str = '{"val1": 1, "val2": 2, "val3": 3}';
    var obj = jQuery.parseJSON(str);
    console.log(obj.val1);
    });

      </script> 
 </head> 
 <body>  
 </body>
</html>

Related Tutorials