0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
wholebodylightpod_dot_com
/
search
/
[
Home
]
File: search.js
$(function(){ var s=location.search.replace(/^\?.*s=([^&]+)/,'$1') ,form=$('#search-form') ,input=$('input[type=text]',form) ,results=$('#search-results').height(0) ,src='search/results.php' ,ifr=$('<iframe width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" allowTransparency="true"></iframe>') if(results.length) ifr .attr({ src:src+'?s='+s }) .appendTo(results) ,input .val(decodeURI(s)) window._resize=function(h){ results .height(h) } })