LA IDEA ES LA SIGUIENTE
TENGO UN ARCHIVO que se llama seguridad.js QUE TIENE EL SIGUIENTE CODIGO
Código:
function seguridad(seleccion,menucontextual,dragstar){
if(seleccion) {document.onselectstart=new Function ("return false");}
if(menucontextual){document.oncontextmenu=new Function ("return false");}
if(dragstar){document.ondragstart=new Function ("return false");}
}
TENGO OTRA PAGINA DE LA CUAL LLAMO ESE JS
ASI
Código:
<html>
<head>
<title>Documento sin título</title>
<script language="javascript" src="seguridad.js"></script>
</head>
<body>
ESTO ES UNA PRUEBA
<script language="javascript">
seguridad(true,true,true)
</script>
</body>
</html>
COMO PUEDEN VER EN LA PARDE DE ABAJO LLAMO A LA FUNCION QUE ESTA EN EL JS Y LE MANDO PARAMETROS
AHORA LA PREGUNTA ES COMO PUEDO MANDARLE PARAMETROS AL JS SIN TENER QUE LLAMARLO ASI
<script language="javascript">
seguridad(true,true,true)
</script>
MI IDEA ES PODER LLAMAR AL JS Y PASARLE LOS PARAMETROS QUE QUIERO
PARA NO TENER QUE LLAMAR LA FUNCION MAS ABAJO
ALGO ASI COMO
Código:
<html>
<head>
<title>Documento sin título</title>
</head>
<body>
<script language="javascript" src="seguridad.js">
seguridad(true,true,true);
</script>
ESTO ES UNA PRUEBA
</body>
</html>
PERO ESTO NO FUNCIONAAAAAA
ALGUIEN SABE COMO PUEDO HACERLO?