Boton HTML sin Marco
<html>
<head>
<style>
/*BOTON SIN MARCO*/
.boton {
background:none;
border:0;
margin:0;
padding:0;
outline:0 none;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>
function mostrarAlerta(){
alert("Boton presionado..");
}
</script>
</head>
<body>
<button type='button' class='boton' onclick="mostrarAlerta();">Presionar</button>
</body>
</html>
<html>
<head>
<style>
/*BOTON SIN MARCO*/
.boton {
background:none;
border:0;
margin:0;
padding:0;
outline:0 none;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>
function mostrarAlerta(){
alert("Boton presionado..");
}
</script>
</head>
<body>
<button type='button' class='boton' onclick="mostrarAlerta();">Presionar</button>
</body>
</html>
Comentarios
Publicar un comentario