window.onload nicht direkt setzen
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 20 Sep 2012 17:20:50 +0000 (19:20 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Oct 2012 14:01:34 +0000 (16:01 +0200)
templates/webpages/am/edit_accounts.html
templates/webpages/menu/menunew.html
templates/webpages/menu/menuv3.html
templates/webpages/menu/menuv4.html

index 597aebc..dcf0be0 100644 (file)
@@ -8,9 +8,9 @@
 </script>
 
 <script type="text/javascript">
-window.onload = function() {
+$(function() {
     setupDependencies('EditAccount'); //name of form(s). Seperate each with a comma (ie: 'weboptions', 'myotherform' )
-  };
+});
 </script>
 
 <form method="post" name="EditAccount" action="am.pl">
index 89bad2b..539bf4e 100644 (file)
@@ -2,14 +2,13 @@
 [% USE HTML %]
  <script type="text/javascript">
 <!--
-function clockon() {
+$(function() {
   var now = new Date();
   var h = now.getHours();
   var m = now.getMinutes();
   document.getElementById('clock_id').innerHTML = (h<10?'0'+h:h)+":"+(m<10?'0'+m:m);
   var timer=setTimeout("clockon()", 10000);
-}
-window.onload=clockon
+})
 //-->
  </script>
 
index 2bd0f87..9a3410d 100644 (file)
@@ -27,14 +27,13 @@ function on_keydown_quicksearch(e) {
   return false;
 }
 
-function clockon() {
+$(function() {
   var now = new Date();
   var h = now.getHours();
   var m = now.getMinutes();
   document.getElementById('clock_id').innerHTML = (h<10?'0'+h:h)+":"+(m<10?'0'+m:m);
   var timer=setTimeout("clockon()", 10000);
-}
-window.onload=clockon
+});
 //-->
  </script>
 
index b54c143..d82a8e0 100644 (file)
@@ -7,13 +7,12 @@
 
  <script type="text/javascript">
 <!--
-function clockon() {
+$(function() {
   var now = new Date();
   var h = now.getHours();
   var m = now.getMinutes();
   document.getElementById('clock_id').innerHTML = (h<10?'0'+h:h)+":"+(m<10?'0'+m:m);
   var timer=setTimeout("clockon()", 10000);
-}
-window.onload=clockon
+});
 //-->
  </script>