The Javascript that I have included in my php created site is
<script type="text/javascript">
$(window).load(function(){
setHeight();
});
if(navigator.userAgent.search(/msie/i)!= -1) {
} else {
window.onresize = function(){
setHeight();
}
}
</script>
Would this cause my browsers (Firefox - IE - Chrome - Opera) to not work?