Adding an ENTER field to the OWA 2013\2016 VIP JS integration code
VIP Integrations
To add an ENTER field to the JS code in an OWA 2013\2016 VIP JS integration, add the following code to the script after the <script type="text/javascript">
line:
$(document).ready(function() {
$('#username, #password, #OTP, .signinTxt').keypress(function(e){
//console.log("ENTER pressed...");
if (e.which == 13 || e.keyCode == 13) {
vipAuth();
return false;
}
});
});