before three years I was a javascript guru. After the JQuery release I forgot everything about JavaScript. This may be a great drawback of this framework, for me. LOL
My issue How I bind a function with the onload event of the document?
I tried so far is:
<script type="text/javascript">
var d = document.getElementsByTagName('body');
d.onload=function(){
alert('Welcome');
}
</script>
also I tried document.onload = function() etc etc but none works
It’s
actually. You don’t use the
onloadproperty of thebodyelement, nor of thedocumentobject.In action:
http://jsfiddle.net/5CP7Z/