これはIEでは機能しません(FFXでは機能しますが)。なんで?
ヘッダーでのHTMLの使用:
<script type="application/javascript">
// And finally, let's call the code ourselves.
window.onload = lbp.init;
</script>
そして、スクリプト:
// lbp is the script's universal variable, which retains everything
var lbp = {};
// The sequence of functions to trigger
lbp.init = function() {
alert('hi');
}
よろしくお願いします=)