Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. $.ajax({
  2. type:'get',
  3. url:"https://onlinefutcoinstore.myshopify.com/collections/xbox-fifa-coins/products/xbox-360-fifa-17-ultimate-team-coins.xml",
  4. cache: false,
  5. dataType: "xml",
  6. success:function(result){
  7.  
  8. var temp = 0;
  9. var product = $(result).find('variant');
  10. $(product).each(function( index ) {
  11. var price = $(product).find('price').text();
  12. console.log(price);
  13. coinPrice[temp] = price;
  14. temp++;
  15.  
  16. });
  17. }});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement