window.onresize = window.onload = function(){
if(window.innerWidth < 480){
document.getElementById('alert').onclick = function(){
alert('<480');
};
//large amounts of code
}
if(window.innerWidth >= 480){
document.getElementById('alert').onclick = function(){
alert('>=480');
};
//large amounts of code
}
}
<button id="alert">Alert</button>