Hello @kartik,
It is very easy toi disable the browser BACK button, like the JQuery code below:
// History API 
if( window.history && window.history.pushState ){
  history.pushState( "nohb", null, "" );
  $(window).on( "popstate", function(event){
    if( !event.originalEvent.state ){
      history.pushState( "nohb", null, "" );
      return;
    }
  });
}
Hope this is helpful!!
Thank You!!