Eduardo ALexandre Posted February 29, 2012 Report Share Posted February 29, 2012 (edited) Bom dia pessoal,tenho o seguinte código para excluir uma imagem.function excluir(idNoticia) { if(confirm("Tem certeza que deseja excluir esta img?")) { location.href = "foto_excluir.php?idNoticia=" + idNoticia; }}e um botão é claro que enviará o id da foto:<input type="button" value="excluir" id="excluir" name="excluir" onClick="excluir(<?php echo $idNoticia ?>)">Como posso esconder ou desabilitar este botão excluir após executá-lo?Att Eduardo A Edited February 29, 2012 by Eduardo ALexandre Quote Link to comment Share on other sites More sharing options...
Question
Eduardo ALexandre
Bom dia pessoal,
tenho o seguinte código para excluir uma imagem.
function excluir(idNoticia) {
if(confirm("Tem certeza que deseja excluir esta img?")) {
location.href = "foto_excluir.php?idNoticia=" + idNoticia;
}
}
e um botão é claro que enviará o id da foto:
<input type="button" value="excluir" id="excluir" name="excluir" onClick="excluir(<?php echo $idNoticia ?>)">
Como posso esconder ou desabilitar este botão excluir após executá-lo?
Att Eduardo A
Edited by Eduardo ALexandreLink to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.