Click here to Skip to main content
15,881,089 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<html>
  <head>
  </head>
  <body>
    <div id="content"></div>
    <script>
      function handleResponse(response) {
      for (var i = 0; i < response.items.length; i++) {
        var item = response.items[i];
        // in production code, item.text should have the HTML entities escaped.
        document.getElementById("content").innerHTML += "<br>" +item.volumeInfo.title+"<br>"+item.volumeInfo.imageLinks.thumbnail;
      }
    }
    </script>
    <script src="https://www.googleapis.com/books/v1/volumes?q=orthopedics&callback=handleResponse"></script>
  </body>
</html>



Here I am Trying to Get Details of The Book Through Specific ID from the Google Books Please Help in JavaScript and JSON
Posted
Comments
ZurdoDev 26-Dec-14 14:08pm    
Where are you stuck?
Krishna Chaitanya Kollu 26-Dec-14 20:53pm    
task complted thank you

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900