function section
Copy Code code as follows:
<script type= "Text/javascript" >
function SysTab () {
$ (' #container > Ul '). Tabs ({selected:0});
}
</script>
Copy Code code as follows:
<body>
<div id= "container" ><!--need to load the dom-->
<ul>
<li><a href= "#fragment-1" ><span>ルートフォルダの definition </span></a></li>
<li><a href= "#fragment-2" ><span> writing management </span></a></li>
<li><a href= "#fragment-3" ><span> means setting </span></a></li>
<li><a href= "#fragment-4" ><span>メール set </span></a></li>
<li><a href= "#fragment-5" ><span>データベース Management </span></a></li>
<li><a href= "#fragment-6" ><span>フォルダ surveillance </span></a></li>
<li><a href= "#fragment-7" ><span>システム Management </span></a></li>
</ul>
.................
</div><!--Dom end--> to load
<script type= "Text/javascript" >
SysTab ();
</script>/Ahead Load function
<!--the remaining large pieces of code-->
</body>
This allows JavaScript to be executed after the specified DOM output completes without waiting for the page to be loaded.