$('.menu-btn').click(function(){
$('.menu-item-has-children > a').each(function(){
let textA = $(this).text();
console.log(textA);
$(this).siblings('span').text(textA);
$(this).remove();
});
});
$('.menu-btn').click(function(){
$('.menu-item-has-children > a').each(function(){
let textA = $(this).text();
console.log(textA);
$('.menu-item-has-children > span').text(textA);
$('.menu-item-has-children > a').remove();
});
});