Skip to content

Commit d597863

Browse files
committed
updated javascript to not use the @ syntax that was deprecated in jquery 1.2 and removed in 1.3
1 parent 675a369 commit d597863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ajax_validation/media/ajax_validation/js/jquery-ajax-validation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function($) {
22
function form_data(form) {
3-
return form.find("input[@checked], input[@type='text'], input[@type='hidden'], input[@type='password'], input[@type='submit'], option[@selected], textarea").filter(':enabled');
3+
return form.find("input[checked], input[type='text'], input[type='hidden'], input[type='password'], input[type='submit'], option[selected], textarea").filter(':enabled');
44
}
55
function inputs(form) {
66
return form.find("input, select, textarea");

0 commit comments

Comments
 (0)