jQuery(document).ready(function($){
jQuery('.service-old').each(function(){
var el = jQuery(this).children().children().children().attr('href');
jQuery(this).wrap('');
console.log(el);
});
jQuery( function($) {
$(document).on('click', 'li.vc_tta-tab a', function( e ){
$('html, body').stop();
});
$(document).on('click', 'li', function( e ){
$('html, body').stop();
});
$(document).on('click', '.vc_tta-panel-title', function( e ){
$('html, body').stop();
});
});
})