Make a css change to the complete or success function of the ajax call. Assuming you are using load :
$('#el').load( url, data, function(){ $('#selector').css('position', 'absolute'); } );
Alternatively (and easier to give as an example), register the ajaxComplete event
$(document).ajaxComplete(function(){ if($('#elementID').length != 0) { $('#elementID').css('position', 'absolute'); } });
This runs every time an ajax request is made, checks if #elementID exists, and if applicable to css.
source share