Thread Anzeige bei Auswahl (2 answers)
Opened by Meme at 2010-11-03 16:06

renee
 2010-11-03 16:14
#142429 #142429
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Wofür brauchst Du überhaupt Kommunikation mit einem Server?

Code (html): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<body>
<script type="text/javascript">
    function check_nr(element) {
        var checked = 0;
        for( var i = 0; i < element.options.length; i++ ) {
            if ( element.options[i].selected ) {
                checked++;
            }
        }

        if ( checked == 1 ) {
            alert( 'Hey, du hast nur eine option ausgesucht' );
        }
        else {
            alert( checked + " Optionen ausgesucht" );
        }
    }
</script>
<select size="4" name="test" onchange="check_nr(this)" multiple="1">
  <option>1</option>
  <option>2</option>
  <option>3</option>
  <option>4</option>
  <option>5</option>
  <option>6</option>
</select>
</body>
</html>
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Anzeige bei Auswahl