Run jQuery on Media Query
$(document).ready(function() { if ( $("div#someDiv").css("text-align") === "right") { $('body').prepend('Hello Mobile User'); } else { // do nothing } });