In online examination once candidate has clicks on start button i dont want to allow him to go back (to previous pages) and he should be in same page if he do any activities
Try in your page following function to prevent unloading of form.
$(window).on('beforeunload', function(){ return false; });
Or try unload function and prevent unloading of current page silently.