function loading_reviews_rating_comments(ref,target,state,numPage){ jQuery.ajax({ url : '/mavista/user/productReviewByajax.do', data:{ ref:ref, state:state, numPage:numPage, target:target, t:Math.random() }, type:'post', dataType:'html', beforeSend:function(){ jQuery(target).html("Loading ..."); }, success:function(data){ jQuery("#"+target).html(data); } }); } function product_review_init_load(productRef){ rattingDiv = jQuery('
'); commentsDiv = jQuery('
'); jQuery('div.product_review_container').append(rattingDiv).append(commentsDiv); loading_reviews_rating_comments(productRef,'product_review_rating_avg','rating'); loading_reviews_rating_comments(productRef,'product_review_comments','review','1'); };