' )
} );
});
/*$( ".tour_right_search .arrow_down" ).click( function () {
if ( $( this ).parent().parent().children( '.linkbox' ).css( 'height' ) == '95px' ) {
$( this ).parent().parent().children( '.linkbox' ).css( 'height', 'auto' );
$( this ).children( '.fa' ).attr( 'class', 'fa fa-chevron-up' );
} else {
$( this ).parent().parent().children( '.linkbox' ).css( 'height', '95' );
$( this ).children( '.fa' ).attr( 'class', 'fa fa-chevron-down' );
}
} );*/
// Add click event dynamically
$(document).on("click", ".toggle-text-button", function() {
// Check if text is more or less
if ($(this).text() == "See All") {
// Change link text
$(this).text("Less");
// Travel up DOM tree to parent, then find any children with CLASS .toggle-text and slide down
$(this).parent().children(".toggle-text").slideDown();
} else {
// Change link text
$(this).text("See All");
// Travel up DOM tree to parent, then find any children with CLASS .toggle-text and slide up
$(this).parent().children(".toggle-text").slideUp();
}
});