Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sobchenyuk/064dfae82d9580b68480a7312bd2aa16 to your computer and use it in GitHub Desktop.
Save sobchenyuk/064dfae82d9580b68480a7312bd2aa16 to your computer and use it in GitHub Desktop.
разработка шаблона вордпресс
window.addEventListener('load', function () {
var test = function (bool) {
if(bool){
var styles = document.querySelectorAll('link');
var js = document.querySelectorAll('script');
styles.forEach(function(item, i) {
if(/\?ver=/.test(item.href)) {
styles[i].href = item.href.replace(/(\?ver=).*/, '?ver=' + Math.ceil(parseFloat(Math.random() * (1000 - i) + i)).toFixed(0));
}
});
js.forEach(function(item, i) {
if (/\?ver=/.test(item.src)) {
js[i].src = item.src.replace(/(\?ver=).*/, '?ver=' + Math.ceil(parseFloat(Math.random() * (1000 - i) + i)).toFixed(0));
}
});
}
};
test(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment