Allow B2B to navigate through the form with Tab

With
$('#company').blur(function(){
VAT only appears when we leave the input and therefore does not allow to navigate through the form with Tab

With
$('#company').on('input',function(){
that work
This commit is contained in:
Seynaeve
2013-08-06 14:15:45 +02:00
parent ba69e48f72
commit 4d29142907
+1 -1
View File
@@ -48,7 +48,7 @@ $(function(){ldelim}
{rdelim});
{literal}
$(document).ready(function() {
$('#company').blur(function(){
$('#company').on('input',function(){
vat_number();
});
vat_number();