Read Value of JSON Result in Jquery - Javascript jQuery

Javascript examples for jQuery:Json

Description

Read Value of JSON Result in Jquery

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(){/*w w w  .  j a  v  a2s . c  om*/
var item="[{\"Column1\":\"false\"}]";
var parsed = JSON.parse(item);
parsed.forEach(function(row) {
    console.log(row.Column1);
});
console.log(parsed[0].Column1);
    });

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

Related Tutorials