-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.jaxy.js
71 lines (55 loc) · 1.45 KB
/
jquery.jaxy.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
(function($) {
$.fn.extend({
jaxy: function() {
return this.each(function() {
if (/^a$/i.test(this.tagName)) $(this).jaxyLink();
if (/^form$/i.test(this.tagName)) $(this).jaxyForm();
});
},
jaxyLink: function() {
return this.click(function() {
$.getScript(this.href);
return false;
});
},
jaxyForm: function() {
// ajax file uploads use an iframe hack, so tell the server we want a js response
if (/multipart/.test(this.attr('enctype'))) {
this.append('<input type="hidden" name="format" value="js" />');
}
return this.ajaxForm({dataType: 'script'})
},
submitOnClick: function() {
return this.click(submitTargetOrParent);
},
submitOnChange: function() {
return this.change(submitTargetOrParent);
},
findTarget: function() {
var target = this.attr('target'),
found = this.parents(target);
if (!found.length) found = $(target);
return found;
}
});
function submitTargetOrParent() {
var el = $(this);
if (el.attr('target')) {
el.findTarget().submit();
} else {
el.parents('form:first').submit();
}
return false;
}
var $val = $.fn.val;
$.fn.val = function(values) {
if (values == undefined) return $val.apply(this, arguments);
if (values.constructor == Object) {
for (var name in values) {
$(this).find('[name="' + name + '"]').val(values[name]);
}
return this;
}
return $val.apply(this, arguments);
}
})(jQuery);