Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. [
  2. {"instrumentGroup":"Woodwind", "category1":"Instrument", "name":" Bb Clarinet", "price":"£400","quantityAvailable":"10", "description":"ABS resin Buffet B12 student clarinet, clear sound.", "rating":"4", "make":"Buffet", "model":"B12"},
  3. {"instrumentGroup":"Woodwind", "category1":"Instrument", "name":"Bb Clarinet", "price":"£1700","quantityAvailable":"10", "description":" CX with full round sound and clear tone.", "rating":"5", "make":"Yamaha", "model":"YCL-CX"},
  4. {"instrumentGroup":"Woodwind", "category1":"Instrument", "name":"Bass Clarinet", "price":"£3500","quantityAvailable":"5", "description":"Student Grenadilla wood bass clarinet with silver plated keywork. Range down to Eb.", "rating":"4", "make":"Buffet", "model":"BC1180"}
  5. ]
  6.  
  7. <article id="prodList">
  8. <article id="products">
  9. <section id="row">
  10. <figure class="prodInfo">
  11. <!--this makes the whole product area clickable!--><a href="#link">
  12. <span class="link"></span>
  13. </a>
  14. <img src="Images/saxophone.png" alt="instrument" width="100" height="100">
  15.  
  16. <figcaption>
  17.  
  18. </figcaption>
  19. </figure>
  20.  
  21. <figure class="prodInfo">
  22. <!--this makes the whole product area clickable!--><a href="#link">
  23. <span class="link"></span>
  24. </a>
  25. <img src="Images/saxophone.png" alt="instrument" width="100" height="100">
  26.  
  27. <figcaption>
  28.  
  29. </figcaption>
  30. </figure>
  31.  
  32. </section>
  33. </article>
  34. </article>
  35.  
  36. $.getJSON("products.json", function(result){
  37.  
  38. $.each(result, function(key, val){
  39. $('figcaption').html(val.make + " " + val.model + "<br/>" + val.name + "<br/>" + val.price);
  40. });
  41. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement