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(); } });
fr.png
$(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);});
$(function () { setTimeout(function() { fillFormBasicInfoFields(); }, 2000);});

Firearms Discount for Police, Law Enforcement & First Responders

Here at First Responders Discounts website, we realize the sacrifices our servicemen make and try to pay them back for their services to the country. If you want to purchase firearms, you can get them at an exclusive discounted price from us. Instead of going to a store, get your firearms from us and avail discounts. First Responders Discounts was created to offer discounts to people who are serving this country selflessly and to appreciate them for the efforts they make every day to make us all feel safe. There are discounts for everyone, whether you are military personnel, firefighter, police officer or EMT specialist. Get unbelievable discounts on all every purchase from us and save your hard-earned money for another time. To ensure safety, after conducting thorough research on the vendors and ensuring that they can be trusted, we include them on our list of vendors. When you shop outside of First Responders Discount, you have to pay the same price as everyone else is paying but with us, you are given exclusive discounts to purchase items that you find interesting and worth buying. If you are browsing on the website and cannot find a particular firearm you wanted to buy, do not hesitate to get in touch with us. Our customer representative department will try their best to get you the firearm that you require. So, what are you waiting for? Give First Responders Discount a try today and be taken aback by the discounts.

offers Object
Join Our Mailing List
$(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); } ref_url_inheritence(); }, 1500); function isJsonValid(argu) { try { JSON.parse(argu); } catch (e) { return false; } return true; } });
$(function(){setTimeout(function (){makeUSStatesCitiesDropdown('[data-component-dynamicsearch]');},2000);});