Skip to content

Instantly share code, notes, and snippets.

@lalfaro29
Created February 22, 2016 18:57
Show Gist options
  • Save lalfaro29/099cc4ae48e72dff8ce4 to your computer and use it in GitHub Desktop.
Save lalfaro29/099cc4ae48e72dff8ce4 to your computer and use it in GitHub Desktop.
Funcion de jquery que deshabilita el boton ATRAS del navegador, aumenta la seguridad de tus paginas.
$(document).ready(function(){
initControls();
});
function initControls(){
window.location.hash="red";
window.location.hash="Red" //chrome
window.onhashchange=function(){window.location.hash="red";}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment