Skip to content

Instantly share code, notes, and snippets.

@airarm
Created September 7, 2023 07:41
Show Gist options
  • Save airarm/d8bc134052af8a6dce7f03acf6995984 to your computer and use it in GitHub Desktop.
Save airarm/d8bc134052af8a6dce7f03acf6995984 to your computer and use it in GitHub Desktop.
const mobilePlaceholders = () => {
document.querySelectorAll('[data-mobile-placeholder]')?.forEach(el => {
if(window.innerWidth <= 1100){
el.setAttribute('placeholder', el.dataset.mobilePlaceholder);
}else{
el.removeAttribute('placeholder');
}
});
}
mobilePlaceholders();
window.addEventListener('resize', mobilePlaceholders);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment