Hi zusammen,
ich habe folgendes jquery und muss es dazu kriegen den inhalt eines dropdownfeldes zu überprüfen. meine recherche und eigenversuche haben mich absolut nicht weitergebracht.
dieses hier übreprüft ob eine checkbox ausgewählt wurde.
ich muss es so in etwa auch wieder benutzen.
hier einer meiner versuche die nicht funktionieren
aber das ist bestimmt voll der schwachsinn.. ich kenne mich leider nicht so gut mit js aus ..brauche da ein wenig hilfe..
evtl mit ein wenig erklärung was dieses index z.b auf sich hat. das check ich ja mal garnicht.
hier nochmal das ganze js script.
vieen dank schonmal
ich habe folgendes jquery und muss es dazu kriegen den inhalt eines dropdownfeldes zu überprüfen. meine recherche und eigenversuche haben mich absolut nicht weitergebracht.
dieses hier übreprüft ob eine checkbox ausgewählt wurde.
ich muss es so in etwa auch wieder benutzen.
Code:
var terms = $("#terms"); if (index > 1 && !terms.get(0).checked) { terms.parent().addClass("error"); // when false is returned, the user cannot advance to the next tab return false; }
Code:
var test= $("#test"); if (index > 1 && test.get('Bitte wählen').selected) { test.parent().addClass("error"); // when false is returned, the user cannot advance to the next tab return false; }
evtl mit ein wenig erklärung was dieses index z.b auf sich hat. das check ich ja mal garnicht.
hier nochmal das ganze js script.
Code:
/ get container for the wizard and initialize its exposing var wizard = $("#wizard").expose({color: '#789', lazy: true}); // enable exposing on the wizard wizard.click(function() { $(this).expose().load(); }); // enable tabs that are contained within the wizard $("ul.tabs", wizard).tabs("div.panes > div", function(event, index) { /* now we are inside the onBeforeClick event */ // ensure that the "terms" checkbox is checked. var terms = $("#terms"); if (index > 0 && !terms.get(0).checked) { terms.parent().addClass("error"); // when false is returned, the user cannot advance to the next tab return false; } // everything is ok. remove possible red highlight from the terms terms.parent().removeClass("error"); }); Navigational buttons // get handle to the tabs API var api = $("ul.tabs", wizard).data("tabs"); // "next tab" button $("button.next", wizard).click(function() { api.next(); }); // "previous tab" button $("button.prev", wizard).click(function() { api.prev(); });
vieen dank schonmal
Kommentar