function read_Cookie_val(name) { const value = '; '+document.cookie; const parts = value.split('; '+name+'='); if (parts.length === 2) return parts.pop().split(';').shift(); } $(function(){ let loginsignupWidget = $('[data-component-loginsignup]'); if (read_Cookie_val('app_u_token')) { loginsignupWidget.find('.loginWidg').hide(); loginsignupWidget.find('.signupWidg').hide(); loginsignupWidget.find('.dashboardWidg').show(); loginsignupWidget.find('.logoutWidg').show(); }else{ loginsignupWidget.find('.dashboardWidg').hide(); loginsignupWidget.find('.logoutWidg').hide(); loginsignupWidget.find('.loginWidg').show(); loginsignupWidget.find('.signupWidg').show(); } });
$(function(){setTimeout(function (){ let searchWidget = $('[data-component-dynamicsearch]'); console.log("searchWidget", searchWidget.find('input[name="keyword"]')); var urlParams = new URLSearchParams(window.location.search); let searchedKeyword = ''; let searchedFilters = ''; if(urlParams.has('s')){ searchedKeyword = urlParams.get('s'); } if(urlParams.has('filters')){ searchedFilters = urlParams.get('filters'); searchedFilters = searchedFilters.split(';'); } searchWidget.each(function (){ selfSearchWidget = $(this); if(searchedKeyword !=''){ selfSearchWidget.find('input[name="keyword"]').val(searchedKeyword); } if(searchedFilters){ $.each(searchedFilters, function (key, value) { if (value) { let optValue = value.split(':'); let filterName = optValue[0]; let filterVal = optValue[1]; selfSearchWidget.find('select[name="'+filterName+'"]').val(filterVal); } }); } let keyword = ''; keyword = selfSearchWidget.find('input[name="keyword"]').val(); let selectedObj = selfSearchWidget.attr("data-selected-obj"); let success_redirect = selfSearchWidget.find('input[name=success_redirect]').val(); let all_filters = ''; let filtersQS = ''; if(!success_redirect){ success_redirect = window.location.href; } if (selfSearchWidget.find('.search-filters').length > 0) { all_filters = selfSearchWidget.find('.search-filters').find('select'); all_filters.off().on('change', function(){ $(this).attr('title', $(this).val()); let QS = $(this).attr('name')+':'+$(this).val(); $(this).attr('data-qs', QS); filtersQS = ''; let filtersArr = []; all_filters.each(function(){ if($(this).attr('data-qs')){ filtersArr.push($(this).attr('data-qs')); } }); filtersQS = filtersArr.join(';'); let keyword = ''; keyword = selfSearchWidget.find('[name="keyword"]').val(); let prepSrc = ''; if (success_redirect && selectedObj && keyword !='') { prepSrc = success_redirect+'?s='+keyword+'&obj='+selectedObj + '&filters='+filtersQS; selfSearchWidget.find('.searchBtn').attr('href', prepSrc); }else{ selfSearchWidget.find('.searchBtn').attr('href', 'javascript:void(0)'); } }); } if (success_redirect && selectedObj && keyword !='') { prepSrc = success_redirect+'?s='+keyword+'&obj='+selectedObj + '&filters='+filtersQS; selfSearchWidget.find('.searchBtn').attr('href', prepSrc); }else{ selfSearchWidget.find('.searchBtn').attr('href', 'javascript:void(0)'); } selfSearchWidget.find('[name="keyword"]').on('change textInput input', function(){ let keyword = ''; keyword = $(this).val(); let prepSrc = ''; if (success_redirect && selectedObj && keyword !='') { prepSrc = success_redirect+'?s='+keyword+'&obj='+selectedObj + '&filters='+filtersQS; selfSearchWidget.find('.searchBtn').attr('href', prepSrc); }else{ selfSearchWidget.find('.searchBtn').attr('href', 'javascript:void(0)'); } }); selfSearchWidget.find('[name="keyword"]').on('keyup', function(e){ if (e.key === 'Enter' || e.keyCode === 13) { let keyword = ''; keyword = $(this).val(); let prepSrc = ''; if (success_redirect && selectedObj && keyword !='') { prepSrc = success_redirect+'?s='+keyword+'&obj='+selectedObj + '&filters='+filtersQS; window.location.href = prepSrc; }else{ selfSearchWidget.find('.searchBtn').attr('href', 'javascript:void(0)'); } } }); }); }, 2000);});

Milan on 47th

210101-201452.png
https://elfinder.owlapplicationbuilder.com/files/1580295343903/first_responder_discounts_v2_1582025468317_12/Offers/210101-201205.png

Back to Menu

Milan on 47th

Jewelry Discounts

Active and retired first responders and military can apply for jewelry discounts at Milanon47th.com Verify online to receive discount.
Our Families at Milan on 47th are very thankful for our business and the relationships we have built with our customers. We are dedicated to showing our thanks through partnerships and recognition of others.
Milan On 47th strongly believes we should always say thank you to the great men and women who protect us and care for us.
We currently offer special pricing for all active and retired, full and part-time Police, Fire, EMS and all branches of the United States Military. If you would like to participate in this program please email us a photograph of your Identification along with your current email address. If you do not have a photo ID please detail your current position and agency you volunteer at or work and we will submit your application for approval consideration. If you are approved for this program Jay will email you the information needed to access our special pricing. Jay works directly with all First Responders and members of the Military. You can email him at Jay@MilanOn47th.com with any questions. Milan On 47th is also dedicated to giving back to our communities and people in need. If you have a special cause or non-profit close to your heart let us know.
Please send us an email explaining your cause and we can offer special group pricing and also in some instances donate directly to your non-profit.
This offer is for firefighters,military,emts-&-paramedics,law-enforcement
State Connecticut
City MYSTIC

How to avail this offer

EXPLORE THIS OFFER

$(function () { setTimeout(function() { fillFormBasicInfoFields(); }, 2000);});
Shares
facebook sharing button Share
twitter sharing button Tweet
pinterest sharing button Pin

$(function () { setTimeout(function () { var desc = $('.item_description').text(); var valid_json = isJsonValid(desc); if (valid_json) { var converted_json = JSON.parse(desc); $('.item_description').text(converted_json); var itemDesc = $('.item_description').text(); itemDesc = itemDesc.replace(/-discounts/g, ""); itemDesc = itemDesc.replace(/-/g, " "); console.log("itemDesc",itemDesc); $('.item_description').text(itemDesc); } }, 1500); function isJsonValid(argu) { try { JSON.parse(argu); } catch (e) { return false; } return true; } });
$(function () { setTimeout(function() { fillFormBasicInfoFields(); }, 2000);});
$( document ).ready(function() { function getCookie_fr(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var cookie=getCookie_fr('app_u_token'); console.log("ibad here" , cookie); if(cookie == ""){ console.log("case logout"); $(".logged_in").hide();$(".logged_out").show(); }else{ console.log("case login"); $(".logged_out").hide();$(".logged_in").show(); } });
$(function(){setTimeout(function (){makeUSStatesCitiesDropdown('[data-component-dynamicsearch]');},2000);});