Lines Matching refs:jQuery

9 jQuery.fn.toggleCheckbox = function() {
18 jQuery(function() {
20 jQuery(".checkliste ol").addClass("hideit");
33 jQuery(".checkliste h2").each(function(indexh2, value) {
34 var tmpElement = jQuery(document.createElement("input")).prop({
38 value : jQuery(this).html(),
43 jQuery(this).prepend(tmpElement);
45 jQuery("#GRUPPE" + indexh2).click(function() {
46 if (jQuery(this).prop("checked") == true) {
47 jQuery("." + jQuery(this).prop("id")).prop("checked", "true");
49 jQuery("." + jQuery(this).prop("id")).removeAttr("checked");
55 jQuery(this).nextUntil("h2").each(function() {
56 if (jQuery(this).hasClass("level2")) {
58 jQuery(this).find("li").each(function() {
60 var tmpElement = jQuery(document.createElement("input")).prop({
64 value : jQuery(this).find("div").html(),
69 jQuery(this).prepend(tmpElement);
72 } else if (jQuery(this).get(0).tagName == "H3") {
74 var tmpElement = jQuery(document.createElement("input")).prop({
78 value : jQuery(this).html(),
83 jQuery(this).prepend(tmpElement);
85 } else if (jQuery(this).hasClass("level3")) {
87 jQuery(this).find("li").each(function() {
89 var tmpElement = jQuery(document.createElement("input")).prop({
93 value : jQuery(this).find("div").html(),
98 jQuery(this).prepend(tmpElement);
102 } else if (jQuery(this).get(0).tagName == "H4") {
104 var tmpElement = jQuery(document.createElement("input")).prop({
108 value : jQuery(this).html(),
112 jQuery(this).prepend(tmpElement);
113 } else if (jQuery(this).hasClass("level4")) {
115 jQuery(this).find("li").each(function() {
117 var tmpElement = jQuery(document.createElement("input")).prop({
121 value : jQuery(this).find("div").html(),
126 jQuery(this).prepend(tmpElement);
137 jQuery("#LEVEL2_" + i).click(function() {
138 if (jQuery(this).prop("checked") == true) {
139 jQuery("." + jQuery(this).prop("id")).prop("checked", "true");
141 jQuery("." + jQuery(this).prop("id")).removeAttr("checked");
147 jQuery("#LEVEL3_" + i).click(function() {
148 if (jQuery(this).prop("checked") == true) {
149 jQuery("." + jQuery(this).prop("id")).prop("checked", "true");
151 jQuery("." + jQuery(this).prop("id")).removeAttr("checked");
158 jQuery("span.unchecked").each(function(indexh2, value) {
159 jQuery(this).parent().find("input").click();