onclick="getLink(<?php echo $selection['product_selection_id']; ?>,<?php echo $selection['search_group']; ?>); setTimeout(function() { document.getElementById('tab').scrollIntoView({ behavior: 'smooth', block: 'start'}); }, 300);"<name>Беговая дорожка детская DFC VT-2301</name>
<vendorCode>VT-2301</vendorCode>
<brand>DFC</brand>
<attachments>
<value>url/index.php?dispatch=attachments.getfile&attachment_id=970</value>
</attachments>
<features>
<feature>
<name>Дисплей</name>
<value>4 х 4,5 см, монохромный LCD</value>
</feature>
<feature>
<name>Размер стола</name>
<value>67 х 53,5 х 78 см</value>
</feature>
<feature>
<name>Размер упаковки</name>
<value>53 х 18,5 х 75 см</value>
</feature>
<feature>
<name>Вес упаковки</name>
<value>10,88 кг</value>
</feature>
<feature>
<name>Вес</name>
<value>9,48 кг</value>
</feature>
<feature>
<name>Гарантия</name>
<value>12 месяцев</value>
</feature>
<feature>
<name>Страна производства</name>
<value>Китай</value>
</feature></features>preg_match_all('#<feature>(?:(?!</feature>).)*?<name>(.*?)</name>#is',$xml,$matches);$('#myLink').click(function(event) {
event.preventDefault();$('.checkbox').change(function(){
var data = [];
if (!this.checked) {
data.push( $(this).attr('name'));
$('#'+ data).html('');
} else if( $(this).is(':checked') ){
data.push( $(this).attr('name'));
$.ajax({
url: '/out.php',
type: 'GET',
data: data,
success: function(html) {
$('#'+ data).html(html);
}
});
}
});