From 410d1c32df612e2ebd35bb3c604d2ee54a29c59c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 2 Dec 2014 17:07:46 +0530 Subject: .live() and .die() methods are deprecated. Use .on() and .off() methods instead Signed-off-by: Madhura Jayaratne --- setup/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup') diff --git a/setup/scripts.js b/setup/scripts.js index ce3e1c0575..192f0e58df 100644 --- a/setup/scripts.js +++ b/setup/scripts.js @@ -115,7 +115,7 @@ function ajaxValidate(parent, id, values) /** * Automatic form submission on change. */ -$('.autosubmit').live('change', function (e) { +$(document).on('change', '.autosubmit', function (e) { e.target.form.submit(); }); -- cgit v1.2.3