let hash;var link;
$(document).on("click", ".mobile_menu_container .parent", function(e) {
e.preventDefault();
var $this = $(this);
hash = $this.attr('href');
link = jQuery('a[href^="${location.hash}"]');
}
$(document).on("click", ".mobile_menu", function(e) {
e.preventDefault();
alert(link) // неопределенна
}