Hello I have an aspx document, at the bottom of the page I have this code:
<script language="javascript" type="text/javascript">
window.onload = migrate();
</script>
It works well, but it does a flickering in the page. The flickering is because I use a translation system... But if I put:
<script language="javascript" type="text/javascript">
window.onload = function () {
migrate();
}
</script>
The flickering dissapear.
What is the difference?
Thanks!