Código PHP:
function hola() {
if($(window).width() <= 1024){
$(.button).append('hello');
}else{
$(.button).append('bye');
}
}
Código HTML:
<button class="buttton" onclick="window.open('http://localhost/miscosas/index.html')"><i class="fa fa-search-plus"></i><script type="text/javascript">hola();</script></button>