Hi.
In my script there are two document.write lines. The problem is that when I call it from my ajax page it replaces the entire body and the page disappears. Is there a way to call this in an ajax page?
<script type="text/javascript">
for (var i=0; i<DropTotal; i++){
document.write('<div id="Drop' + i + '" class="DropLine" align="center"> </div>');
document.write('<div id="Drop' + i + '" align="center"> </div>');
}
</script>