var breeze_prefetch = {"local_url":"https:\/\/chaseusaapparel.com","ignore_remote_prefetch":"1","ignore_list":["\/cart","\/checkout","\/my-account","\/wp-admin\/"]};
https://chaseusaapparel.com/wp-content/plugins/breeze/assets/js/js-front-end/breeze-prefetch-links.min.js
https://chaseusaapparel.com/wp-includes/js/jquery/jquery.min.js
https://chaseusaapparel.com/wp-includes/js/jquery/jquery-migrate.min.js
https://chaseusaapparel.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js
https://chaseusaapparel.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"};
https://chaseusaapparel.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js
https://chaseusaapparel.com/wp-includes/js/underscore.min.js
var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}};
https://chaseusaapparel.com/wp-includes/js/wp-util.min.js
https://chaseusaapparel.com/wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js
var wc_add_to_cart_variation_params = {"wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination."};
https://chaseusaapparel.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js
var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_1bf5cda26869f2eed6d0cf5399b5c98a","fragment_name":"wc_fragments_1bf5cda26869f2eed6d0cf5399b5c98a","request_timeout":"5000"};
WHOLESALE CLOTHING DISTRIBUTOR IN USA
Who we are
Our website address is: http://chaseusaapparel.com
What personal data we collect and why we collect it
Comments
When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.
An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.
Media
If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.
Contact forms
Cookies
If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.
If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.
When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.
If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.
Embedded content from other websites
Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.
These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.
Analytics
Who we share your data with
How long we retain your data
If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.
For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.
What rights you have over your data
If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.
Where we send your data
Visitor comments may be checked through an automated spam detection service.
Your contact information
Additional information
How we protect your data
What data breach procedures we have in place
What third parties we receive data from
What automated decision making and/or profiling we do with user data
Industry regulatory disclosure requirements
(function( w ){
"use strict";
// rel=preload support test
if( !w.loadCSS ){
w.loadCSS = function(){};
}
// define on the loadCSS obj
var rp = loadCSS.relpreload = {};
// rel=preload feature support test
// runs once and returns a function for compat purposes
rp.support = (function(){
var ret;
try {
ret = w.document.createElement( "link" ).relList.supports( "preload" );
} catch (e) {
ret = false;
}
return function(){
return ret;
};
})();
// if preload isn't supported, get an asynchronous load by using a non-matching media attribute
// then change that media back to its intended value on load
rp.bindMediaToggle = function( link ){
// remember existing media attr for ultimate state, or default to 'all'
var finalMedia = link.media || "all";
function enableStylesheet(){
// unbind listeners
if( link.addEventListener ){
link.removeEventListener( "load", enableStylesheet );
} else if( link.attachEvent ){
link.detachEvent( "onload", enableStylesheet );
}
link.setAttribute( "onload", null );
link.media = finalMedia;
}
// bind load handlers to enable media
if( link.addEventListener ){
link.addEventListener( "load", enableStylesheet );
} else if( link.attachEvent ){
link.attachEvent( "onload", enableStylesheet );
}
// Set rel and non-applicable media type to start an async request
// note: timeout allows this to happen async to let rendering continue in IE
setTimeout(function(){
link.rel = "stylesheet";
link.media = "only x";
});
// also enable media after 3 seconds,
// which will catch very old browsers (android 2.x, old firefox) that don't support onload on link
setTimeout( enableStylesheet, 3000 );
};
// loop through link elements in DOM
rp.poly = function(){
// double check this to prevent external calls from running
if( rp.support() ){
return;
}
var links = w.document.getElementsByTagName( "link" );
for( var i = 0; i < links.length; i++ ){
var link = links[ i ];
// qualify links to those with rel=preload and as=style attrs
if( link.rel === "preload" && link.getAttribute( "as" ) === "style" && !link.getAttribute( "data-loadcss" ) ){
// prevent rerunning on link
link.setAttribute( "data-loadcss", true );
// bind listeners to toggle media back
rp.bindMediaToggle( link );
}
}
};
// if unsupported, run the polyfill
if( !rp.support() ){
// run once at least
rp.poly();
// rerun poly on an interval until onload
var run = w.setInterval( rp.poly, 500 );
if( w.addEventListener ){
w.addEventListener( "load", function(){
rp.poly();
w.clearInterval( run );
} );
} else if( w.attachEvent ){
w.attachEvent( "onload", function(){
rp.poly();
w.clearInterval( run );
} );
}
}
// commonjs
if( typeof exports !== "undefined" ){
exports.loadCSS = loadCSS;
}
else {
w.loadCSS = loadCSS;
}
}( typeof global !== "undefined" ? global : this ) );
(function() {
window.__insp = window.__insp || [];
__insp.push(['wid', 687768769]);
var ldinsp = function(){
if(typeof window.__inspld != "undefined") return; window.__inspld = 1; var insp = document.createElement('script'); insp.type = 'text/javascript'; insp.async = true; insp.id = "inspsync"; insp.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://cdn.inspectlet.com/inspectlet.js?wid=687768769&r=' + Math.floor(new Date().getTime()/3600000); var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(insp, x); };
setTimeout(ldinsp, 0);
})();
(function () {
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
})();
var wcboost_variation_swatches_params = {"show_selected_label":"1"};
https://chaseusaapparel.com/wp-content/plugins/wcboost-variation-swatches/assets/js/frontend.min.js
https://chaseusaapparel.com/wp-includes/js/jquery/jquery.serialize-object.js
https://chaseusaapparel.com/wp-content/themes/konte/js/background-color-theif.min.js
https://chaseusaapparel.com/wp-includes/js/imagesloaded.min.js
https://chaseusaapparel.com/wp-content/themes/konte/js/slick.min.js
https://chaseusaapparel.com/wp-content/themes/konte/js/perfect-scrollbar.min.js
var konteData = {"ajax_url":"https:\/\/chaseusaapparel.com\/wp-admin\/admin-ajax.php","rtl":"","preloader":"","sticky_header":"none","header_search_ajax":"1","wishlist_count":"0","product_sticky_summary":"1","product_summary_sticky_mode":"advanced","product_auto_background":"","product_gallery_slider":"1","product_image_lightbox":"1","product_image_zoom":"","product_quantity_input_style":"default","product_ajax_addtocart":"1","cart_open_after_added":"","product_quickview_auto_background":"","product_quickview_auto_close":"1","popup":"","popup_frequency":"14","popup_visible":"delay","popup_visible_delay":"45","added_to_cart_notice":"1","added_to_cart_message":"Product was added to cart successfully","added_to_wishlist_notice":null,"added_to_wishlist_message":null,"blog_nav_ajax_url_change":"1","shop_nav_ajax_url_change":"","portfolio_nav_ajax_url_change":"1","product_quickview_nonce":"9ec8c83d4b","product_search_nonce":"877d4de3f2","share_nonce":"d57eff0740","add_to_cart_nonce":"a9c8a7cd5d"};
https://chaseusaapparel.com/wp-content/themes/konte/js/scripts.min.js
https://chaseusaapparel.com/wp-content/plugins/konte-addons/assets/js/products-filter.js
https://chaseusaapparel.com/wp-includes/js/masonry.min.js
https://chaseusaapparel.com/wp-includes/js/jquery/jquery.masonry.min.js
https://chaseusaapparel.com/wp-content/plugins/konte-addons/assets/js/jquery.countdown.js
https://chaseusaapparel.com/wp-content/plugins/konte-addons/assets/js/circle-progress.js
https://chaseusaapparel.com/wp-content/plugins/konte-addons/assets/js/shortcodes.js
https://chaseusaapparel.com/wp-content/plugins/js_composer/assets/lib/flexslider/jquery.flexslider.min.js
https://chaseusaapparel.com/wp-content/themes/konte/js/notify.min.js
https://chaseusaapparel.com/wp-content/themes/konte/js/quantity-dropdown.js
https://chaseusaapparel.com/wp-content/plugins/perfmatters/vendor/instant-page/instantpage.js