#info
{
position: absolute;
left:30%;
top:1%;
width:40%;
height:40%;
border-radius:10px;
}
$("#item_info").append("<div id='info'>");
$("#item_info").append("<h1><ins style='color:yellow'>"+obj.name+"</ins></h1>");
$("#item_info").append("<h1>"+obj.text+"</h1>");
$("#item_info").append("<h1> цена: <ins>"+obj.price+" "+cur_val+"</ins></h1>");
$("#item_info").append("</div>");
var $item = $('<div/>', {
'id':'info',
html:'<h1><ins style="color:yellow">' + obj.name + '</ins></h1><h1>' + obj.text + '</h1><h1> цена: <ins>' + obj.price + ' ' + cur_val + '</ins></h1>'
});
$("#item_info").append($item);