<form></form>
<script>
window.onload = function(){
if(document.getElementsByTagName('form').length) alert('форма есть')
}
</script>
<script>
window.onload = function(){
if(document.getElementsByTagName('form').length) alert('форма есть')
}
</script>
<div id="element"></div>
<script>
window.onload = function(){
if(document.getElementById('element')) alert('div есть')
}
</script>
<script>
window.onload = function(){
if(document.getElementById('element')) alert('div есть')
}
</script>