Skip to content

Commit 3114c26

Browse files
author
SamWM
committed
first commit
1 parent 440d1dc commit 3114c26

17 files changed

+1655
-0
lines changed

checkboxes/jquery.checkboxes.js

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
/*
2+
*
3+
* Copyright (c) 2006-2008 Sam Collett (http://www.texotela.co.uk)
4+
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
5+
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
6+
*
7+
* Version 2.1
8+
* Demo: http://www.texotela.co.uk/code/jquery/checkboxes/
9+
*
10+
* $LastChangedDate: 2009-02-07 23:44:21 +0000 (Sat, 07 Feb 2009) $
11+
* $Rev: 6182 $
12+
*/
13+
14+
;(function($) {
15+
16+
/*
17+
* Toggle all checkboxes contained within a form
18+
*
19+
* @name toggleCheckboxes
20+
* @param filter only toggle checkboxes matching this expression
21+
* @param returnChecked return checkboxes as jQuery object, default false
22+
* @author Sam Collett (http://www.texotela.co.uk)
23+
* @example $("#myform").toggleCheckboxes();
24+
* @example $("#myform").toggleCheckboxes(".onlyme");
25+
* @example $("#myform").toggleCheckboxes(":not(.notme)");
26+
* @example $("#myform").toggleCheckboxes("*", true);
27+
*
28+
*/
29+
$.fn.toggleCheckboxes = function(filter, returnChecked)
30+
{
31+
filter = filter || "*";
32+
returnChecked = returnChecked || false;
33+
var returnWhat = $([]);
34+
this.each(
35+
function()
36+
{
37+
var checked = $("input[type=checkbox]", this).filter(filter).each(
38+
function()
39+
{
40+
this.checked = !this.checked;
41+
}
42+
).filter(":checked");
43+
returnWhat = checked;
44+
}
45+
);
46+
if(!returnChecked)
47+
{
48+
returnWhat = this;
49+
}
50+
return returnWhat;
51+
};
52+
53+
/*
54+
* Check all checkboxes contained within a form
55+
*
56+
* @name checkCheckboxes
57+
* @param filter only check checkboxes matching this expression
58+
* @param returnChecked return checkboxes as jQuery object, default false
59+
* @author Sam Collett (http://www.texotela.co.uk)
60+
* @example $("#myform").checkCheckboxes();
61+
* @example $("#myform").checkCheckboxes(".onlyme");
62+
* @example $("#myform").checkCheckboxes(":not(.notme)");
63+
* @example $("#myform").checkCheckboxes("*", true);
64+
*
65+
*/
66+
$.fn.checkCheckboxes = function(filter, returnChecked)
67+
{
68+
filter = filter || "*";
69+
returnChecked = returnChecked || false;
70+
var returnWhat = $([]);
71+
this.each(
72+
function()
73+
{
74+
var checked = $("input[type=checkbox]", this).filter(filter).each(
75+
function()
76+
{
77+
this.checked = true;
78+
}
79+
).filter(":checked");
80+
returnWhat = checked;
81+
}
82+
);
83+
if(!returnChecked)
84+
{
85+
returnWhat = this;
86+
}
87+
return returnWhat;
88+
};
89+
90+
/*
91+
* UnCheck all checkboxes contained within a form
92+
*
93+
* @name unCheckCheckboxes
94+
* @param filter only check checkboxes matching this expression
95+
* @param returnUnChecked return unchecked checkboxes as jQuery object, default false
96+
* @author Sam Collett (http://www.texotela.co.uk)
97+
* @example $("#myform").unCheckCheckboxes();
98+
* @example $("#myform").unCheckCheckboxes(".onlyme");
99+
* @example $("#myform").unCheckCheckboxes(":not(.notme)");
100+
* @example $("#myform").unCheckCheckboxes("*", true);
101+
*
102+
*/
103+
$.fn.unCheckCheckboxes = function(filter, returnUnChecked)
104+
{
105+
filter = filter || "*";
106+
returnUnChecked = returnUnChecked || false;
107+
var returnWhat = $([]);
108+
this.each(
109+
function()
110+
{
111+
var unChecked = $("input[type=checkbox]", this).filter(filter).each(
112+
function()
113+
{
114+
this.checked = false;
115+
}
116+
).filter(":not(:checked)");
117+
returnWhat = unChecked;
118+
}
119+
);
120+
if(!returnUnChecked)
121+
{
122+
returnWhat = this;
123+
}
124+
return returnWhat;
125+
};
126+
127+
/*
128+
* Makes checkboxes behave like a radio button group
129+
* i.e. only one can be selected at a time
130+
*
131+
* @name radioCheckboxGroup
132+
* @param name field name (leave blank to apply to all check boxes)
133+
* @param filter apply to checkboxes matching this expression
134+
* @author Sam Collett (http://www.texotela.co.uk)
135+
* @example $.radioCheckboxGroup("fieldname");
136+
* @example $.radioCheckboxGroup("fieldname", ".myclass");
137+
* @example $.radioCheckboxGroup("", ".myclass");
138+
*
139+
*/
140+
$.radioCheckboxGroup = function(name, filter)
141+
{
142+
filter = filter || "*";
143+
var expression = "input[type=checkbox]";
144+
if(name)
145+
{
146+
expression += "[name=" + name + "]"
147+
}
148+
var x = $(expression).filter(filter);
149+
x.click(
150+
function()
151+
{
152+
// uncheck every other box with the same name
153+
x.not(this).each(
154+
function()
155+
{
156+
this.checked = false;
157+
}
158+
).end();
159+
}
160+
);
161+
};
162+
163+
})(jQuery);

checkboxes/jquery.checkboxes.min.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
*
3+
* Copyright (c) 2006-2008 Sam Collett (http://www.texotela.co.uk)
4+
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
5+
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
6+
*
7+
* Version 2.1
8+
* Demo: http://www.texotela.co.uk/code/jquery/checkboxes/
9+
*
10+
* $LastChangedDate: 2009-02-07 23:54:23 +0000 (Sat, 07 Feb 2009) $
11+
* $Rev: 6184 $
12+
*/
13+
;(function(d){d.fn.toggleCheckboxes=function(a,b){a=a||"*";b=b||false;var c=d([]);this.each(function(){var e=d("input[type=checkbox]",this).filter(a).each(function(){this.checked=!this.checked}).filter(":checked");c=e});if(!b){c=this}return c};d.fn.checkCheckboxes=function(a,b){a=a||"*";b=b||false;var c=d([]);this.each(function(){var e=d("input[type=checkbox]",this).filter(a).each(function(){this.checked=true}).filter(":checked");c=e});if(!b){c=this}return c};d.fn.unCheckCheckboxes=function(a,b){a=a||"*";b=b||false;var c=d([]);this.each(function(){var e=d("input[type=checkbox]",this).filter(a).each(function(){this.checked=false}).filter(":not(:checked)");c=e});if(!b){c=this}return c};d.radioCheckboxGroup=function(e,a){a=a||"*";var b="input[type=checkbox]";if(e){b+="[name="+e+"]"}var c=d(b).filter(a);c.click(function(){c.not(this).each(function(){this.checked=false}).end()})}})(jQuery);

checkboxes/jquery.checkboxes.pack.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
*
3+
* Copyright (c) 2006-2008 Sam Collett (http://www.texotela.co.uk)
4+
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
5+
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
6+
*
7+
* Version 2.1
8+
* Demo: http://www.texotela.co.uk/code/jquery/checkboxes/
9+
*
10+
* $LastChangedDate: 2009-02-07 23:44:21 +0000 (Sat, 07 Feb 2009) $
11+
* $Rev: 6182 $
12+
*/
13+
eval(function(p,a,c,k,e,r){e=function(c){return c.toString(36)};if('0'.replace(0,e)==0){while(c--)r[e(c)]=k[c];k=[function(e){return r[e]||e}];e=function(){return'[0-9f-i]'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(1(d){d.g.toggleCheckboxes=1(a,b){a=a||"*";b=b||6;2 c=d([]);0.4(1(){2 e=d("7[8=9]",0).5(a).4(1(){0.3=!0.3}).5(":3");c=e});f(!b){c=0}h c};d.g.checkCheckboxes=1(a,b){a=a||"*";b=b||6;2 c=d([]);0.4(1(){2 e=d("7[8=9]",0).5(a).4(1(){0.3=true}).5(":3");c=e});f(!b){c=0}h c};d.g.unCheckCheckboxes=1(a,b){a=a||"*";b=b||6;2 c=d([]);0.4(1(){2 e=d("7[8=9]",0).5(a).4(1(){0.3=6}).5(":i(:3)");c=e});f(!b){c=0}h c};d.radioCheckboxGroup=1(e,a){a=a||"*";2 b="7[8=9]";f(e){b+="[name="+e+"]"}2 c=d(b).5(a);c.click(1(){c.i(0).4(1(){0.3=6}).end()})}})(jQuery);',[],19,'this|function|var|checked|each|filter|false|input|type|checkbox||||||if|fn|return|not'.split('|'),0,{}))

focusfields/jquery.focusfields.js

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
/**
2+
*
3+
* Copyright (c) 2007 Sam Collett (http://www.texotela.co.uk)
4+
* Licensed under the MIT License:
5+
* http://www.opensource.org/licenses/mit-license.php
6+
*
7+
* Version 1.0
8+
* Demo: http://www.texotela.co.uk/code/jquery/focusfields/
9+
*
10+
* $LastChangedDate: 2007-06-19 10:29:30 +0100 (Tue, 19 Jun 2007) $
11+
* $Rev: 2108 $
12+
*/
13+
14+
(function($) {
15+
/**
16+
* Outlines input elements (of type text) and/or textarea's when they gain focus
17+
*
18+
* @name focusFields
19+
* @param oColour Outline colour
20+
* @param oWidth Outline width
21+
* @param bgColour Background colour
22+
* @param textColour Text Colour
23+
*/
24+
$.fn.focusFields = $.fn.focusfields = function(oColour, oWidth, bgColour, textColour)
25+
{
26+
this.each(
27+
function()
28+
{
29+
// if node is not an input or textarea, skip
30+
if((this.nodeName.toLowerCase() != "input"
31+
&& this.nodeName.toLowerCase() != "textarea")
32+
// also skip the following types of inputs:
33+
|| this.type == "checkbox"
34+
|| this.type == "radio"
35+
|| this.type == "image"
36+
|| this.type == "reset"
37+
|| this.type == "submit")
38+
{
39+
return;
40+
}
41+
oColour = oColour || "#9cc";
42+
oWidth = oWidth || 2;
43+
var $this = $(this);
44+
this.oldbgcolour = $this.css("background-color") || "#fff";
45+
this.oldtextcolour = $this.css("color") || "#000";
46+
bgColour = bgColour || this.oldbgcolour;
47+
textColour = textColour || this.oldtextcolour;
48+
var isIE = false;
49+
/*@cc_on
50+
isIE = true;
51+
@*/
52+
if(isIE)
53+
{
54+
var outlineElement = document.createElement("span");
55+
outlineElement.className = "outline";
56+
$this.focus(
57+
function()
58+
{
59+
$(this.parentNode).css(this.parentNode.borderCss.on);
60+
$(this).css({backgroundColor: bgColour, color: textColour});
61+
}
62+
)
63+
.blur(
64+
function()
65+
{
66+
$(this.parentNode).css(this.parentNode.borderCss.off);
67+
$(this).css({backgroundColor: this.oldbgcolour, color: this.oldtextcolour});
68+
}
69+
);
70+
outlineElement.borderCss = {
71+
off:
72+
{
73+
backgroundColor: $this.parent().css("background-color") || "#fff",
74+
padding: oWidth + "px"
75+
}
76+
, on:
77+
{
78+
backgroundColor: oColour
79+
}
80+
};
81+
$(outlineElement).css(outlineElement.borderCss.off);
82+
// remove existing wrapper if reapplied
83+
if($this.parent()[0].className == "outline")
84+
{
85+
var $parent = $this.parent();
86+
$parent.after($this);
87+
$parent.parent()[0].removeChild($parent[0]);
88+
}
89+
$this.wrap(outlineElement);
90+
}
91+
else
92+
{
93+
// apply a margin equal to the width of the outline (to prevent overlap)
94+
$this.css({margin: oWidth + "px"});
95+
this.outlineCss = {
96+
off:
97+
{
98+
outlineStyle: "solid",
99+
outlineWidth: oWidth + "px"
100+
}
101+
, on:
102+
{
103+
outlineColor: oColour
104+
}
105+
};
106+
var $parent = $this.parent(), parentBG;
107+
do
108+
{
109+
parentBG = $parent.css("background-color") || "#fff";
110+
$parent = $parent.parent();
111+
if($parent[0] == document) break;
112+
}
113+
while (parentBG == "transparent")
114+
if(parentBG == "transparent") parentBG = "#fff";
115+
this.outlineCss.off.outlineColor = parentBG;
116+
$this.css(this.outlineCss.off)
117+
.focus(
118+
function()
119+
{
120+
$(this).css(this.outlineCss.on).css({backgroundColor: bgColour, color: textColour});
121+
}
122+
)
123+
.blur(
124+
function()
125+
{
126+
$(this).css(this.outlineCss.off).css({backgroundColor: this.oldbgcolour, color: this.oldtextcolour});
127+
}
128+
);
129+
}
130+
}
131+
);
132+
return this;
133+
}
134+
135+
})(jQuery);

focusfields/jquery.focusfields.pack.js

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)