So I got stuck in this thought today...
What is the properly (or best) way to clear an input value with jQuery?
As far as I know, all these methods works just fine:
$('input').val(null);
$('input').val(undefined);
$('input').val('');
So, anyone knows a better method, or which one is the right one?