2
I created a form in which when it is filled out, it should be printed out. However, when I print it all out without formatting.
Can anyone tell me how to make the print out formatted?
And how do I hide the send, print and delete buttons? I used the "None display", but they disappear in the form.
HTML of the buttons:
<input class="envio" type="submit" value="Enviar" name="enviar"/>
<button class="apaga" type="reset" value="Apagar">Apagar</button>
<head>
<script language="JavaScript">
<!-- Begin
function varitext(text){
text=document
print(text)
}
// End -->
</script>
</head>
<body>
<div class="print">
<form>
<input name="print" type="button" value="Imprimir"
ONCLICK="varitext()">
</form>
</DIV>
Post the HTML for us to see.
– Marconi
I added the html of the buttons in the question.
– Inez Boldrin