$.ajax({
type: "POST",
url: "ajax.php",
data:{'item_id01':item_id01},
dataType:json,
success: function(data){
$('#tht_02').html(data);
}
});
echo json_encode($array_of_your_needs);
$result = array(
'name' => 'foo',
'type' => 'bar');
echo json_encode($result );
function(data){
var name = data.name;
var type= data.type
}
;$('#portfolio').on('hover','figure', function(){
$("#portfolio figure").not(this).stop().animate({top: y, left:x});
})
$(document).ready(function() {
var link = window.location.pathname;
$('.nav li.active').removeClass('active');
$('.nav li a').each(function() {
if ($(this).attr('href' == link) {
$(this).parent('li').addClass('active');
}
});
});
});