To disable validating when the input box got focus, bind a 'focus' event on this input box and set the inner variable 'validating' to false. The code looks like this:
$('#box').bind('focus',function(){
$(this).data('validatebox').validating = false;
}).bind('blur',function(){
$(this).validatebox('validate'); // call validate method to do the validation when box lose focus
});