Etiqueta Posted July 16, 2012 at 12:05 PM Report Share #468834 Posted July 16, 2012 at 12:05 PM Boa tarde, é possivel uma página ter o botão para imprimir e quando a folha é impressa o botão que se clicou não ser visivel? o mesmo acontece para selects e url da pagina. Obrigada pela opinião Facebook: https://www.facebook.com/DeArteaZ Blog: http://arte-a-z.blogspot.com Link to comment Share on other sites More sharing options...
HappyHippyHippo Posted July 16, 2012 at 12:17 PM Report Share #468838 Posted July 16, 2012 at 12:17 PM usando jQuery para esconder o botão ao clicar nele: <input type="button" onclick=" /* do whatever */ $(this).css('display', 'none'); " /> IRC : sim, é algo que ainda existe >> #p@p Portugol Plus Link to comment Share on other sites More sharing options...
pmg Posted July 16, 2012 at 12:25 PM Report Share #468841 Posted July 16, 2012 at 12:25 PM Mete estilos diferentes consoante o destino: @media print { input { display: none; } } @media screen { input { display: block; } } What have you tried? Não respondo a dúvidas por PM A minha bola de cristal está para compor; deve ficar pronta para a semana. Torna os teus tópicos mais atractivos e legíveis usando a tag CODE para colorir o código! Link to comment Share on other sites More sharing options...
HappyHippyHippo Posted July 16, 2012 at 12:31 PM Report Share #468842 Posted July 16, 2012 at 12:31 PM usando jQuery para esconder o botão ao clicar nele: <input type="button" onclick=" /* do whatever */ $(this).css('display', 'none'); " /> peço desculpa, li mal a pergunta IRC : sim, é algo que ainda existe >> #p@p Portugol Plus Link to comment Share on other sites More sharing options...
Etiqueta Posted July 16, 2012 at 01:30 PM Author Report Share #468860 Posted July 16, 2012 at 01:30 PM Obrigada pela ajuda, já consegui imprimir sem os botões. Ainda não consegui que o select option que tenho não imprima naquele formato mas sim só como se fosse texto Facebook: https://www.facebook.com/DeArteaZ Blog: http://arte-a-z.blogspot.com Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now