Advertisement
fauzieuy

Untitled

Oct 6th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  success: function(data){
  2.             var items = [];
  3.             items.push("<li class='group'>Product</li>");
  4.             .each( data, function( key, val ) {
  5.                  console.log(key);
  6.                  var productImages = "<img class='product-thumb' src='" + val.id_default_image + "'>";
  7.                  var productHeading = "<p class='product-heading'>" + val.name + "</p>";
  8.                  var productShortDescription = "<span class='product-short-description'>" + val.short_description + "</span>";
  9.                  var productPrice = "<p class='product-price'>" + val.price + "</p>";
  10.                
  11.                  /* id menggunakan  val.name + val.id */
  12.                  items.push( "<li id='"+ val.name + val.id"' value='" + val.id + "'><a href='#product' >"+ productImages + productHeading + productShortDescription + productPrice + " </a></li>" );
  13.                  
  14.                  /* val.name + val.id ditambahkan style */
  15.                  $('#' + val.name + val.id  + '').css('color', 'black');
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement