(merge) window.onload nicht direkt setzen
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 21 Sep 2012 08:55:06 +0000 (10:55 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Oct 2012 14:02:02 +0000 (16:02 +0200)
-> Funktonsnamen werden ncoh gebraucht.

templates/webpages/menu/menunew.html
templates/webpages/menu/menuv3.html
templates/webpages/menu/menuv4.html

index 539bf4e..f746092 100644 (file)
@@ -2,13 +2,14 @@
 [% USE HTML %]
  <script type="text/javascript">
 <!--
-$(function() {
+function clockon() {
   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);
-})
+}
+$(clockon);
 //-->
  </script>
 
index 9a3410d..b3f064a 100644 (file)
@@ -27,13 +27,14 @@ function on_keydown_quicksearch(e) {
   return false;
 }
 
-$(function() {
+function clockon() {
   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);
-});
+}
+$(clockon);
 //-->
  </script>
 
index d82a8e0..a24b637 100644 (file)
@@ -7,12 +7,13 @@
 
  <script type="text/javascript">
 <!--
-$(function() {
+function clockon() {
   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);
-});
+}
+$(clockon);
 //-->
  </script>