How to lock or disable and again the tab key with javascript?
On Neal answer, I'd only add:
if (objEvent.keyCode == 9) { //tab pressed return; }
Because when you finish typing CPF and press TAB, it counts as a character and changes to CNPJ mask.
Complete code: