$(function(){ var s=location.search.replace(/^\?.*s=([^&]+)/,'$1') ,form=$('#search') ,input=$('input[type=text]',form) ,results=$('#search-results').height(0) ,src='search/results.php' ,ifr=$('') if(results.length) ifr .attr({ src:src+'?s='+s }) .appendTo(results) ,input .val(decodeURI(s)) window._resize=function(h){ results .height(h) } })