Improve DOM
authorJoey Schulze <joey@infodrom.org>
Thu, 17 Sep 2015 22:02:35 +0000 (22:02 +0000)
committerJoey Schulze <joey@infodrom.org>
Thu, 17 Sep 2015 22:02:35 +0000 (22:02 +0000)
src/InfoCon/account/index.wml

index b0c1ad2..d6417fa 100644 (file)
@@ -7,7 +7,7 @@
 
 Die folgenden Konten stehen zur Verfügung:
 
-<p><ul>
+<p><ul id="accountlist">
 <?
   $accounts = new AccountName(false);
   $account = new Accounting(false);
@@ -23,7 +23,7 @@ Die folgenden Konten stehen zur Verf
 
 <protect><script type="text/javascript">
 $(function(){
-    $('blockquote ul li a').each(function(i,e){
+    $('ul#accountlist li a').each(function(i,e){
        $(this).attr('href', $(this).attr('href').replace('query.php','list.php'));
     });
 });