diff --git a/typo3/sysext/install/Resources/Public/JavaScript/Install.js b/typo3/sysext/install/Resources/Public/JavaScript/Install.js
index aad6583dbcfba9a3c889a776922501aee531ed63..aec0f6191f39e144ddf6d53236d2cc47235ecf2d 100644
--- a/typo3/sysext/install/Resources/Public/JavaScript/Install.js
+++ b/typo3/sysext/install/Resources/Public/JavaScript/Install.js
@@ -677,7 +677,7 @@ $(function() {
 	});
 
 	// automatically select the custom preset if a value in one of its input fields is changed
-	$('.t3js-custom-preset').on('change', function () {
+	$('.t3js-custom-preset').on('input', function() {
 		$('#' + $(this).data('radio')).prop('checked', true);
 	});
 });