Ya he resuelto mi problema, he creado un metodo de escucha para saber si cambia el tamaño de la pantalla.
Por si alguien lo necesita dejo el código.
Código HTML:
screenWidth = $(window).width();
screenHeight = $(window).height();
setInterval(function () {
if ($(window).width() !== screenWidth || $(window).height() !== screenHeight) {
screenWidth = $(window).width();
screenHeight = $(window).height();
alert('entra');
}
}, 50);
Saludos!