Jump to content
Fórum Script Brasil
  • 0

encurtar código, esconder URL dentro do codigo.


Leonardo.j

Question

Gostaria de dicar, para esconder e diminuir com este script.

ele está funcional, mais como estou iniciando no mundo de jquery/javascript, então achei que está meio grande...

Bom, é possivel, esconder a URL para ninguém acessa-la?

<script language ="Javascript">
function excluir()
{
        var answer = confirm("Deseja realmente deletar esta mensagem?")
        if (answer){
            $("form").attr("action", "AQUI FICA A URL");
            $("form").submit();
            return true;
        }
    return false;
}
function spam()
{
    var answer = confirm("Esta mensagem realmente é um spam?")
    if (answer){
        $("form").attr("action", "AQUI FICA A URL");
        $("form").submit();
        return true;
    }
    return false;
}
function MarcarTodosCheckbox(){
    $("input[name='msg[]']").each(function(){
        if(!this.checked){
            $(this).attr("checked", "checked");
        }else{
            $(this).removeAttr("checked");
        }
    })
}
function Abrir(){
                var quantidade = $("input[type=checkbox][name='msg[]']:checked").length;
                    if(quantidade>=2){
                        var answer = confirm("Essa operação não pode ser realizada em mais de uma mensagem.\nSelecione apenas uma mensagem e tente novamente.")
                        return false;
                        }else if(quantidade>=1){
                            var ler    = $("input[type=checkbox][name='msg[]']:checked").val();
                            $("form").attr("action", "AQUI FICA A URL"+ler);
                            $("form").submit();
                            }else{
                                var answer = confirm("Selecione uma mensagem.")
                                return false;
                                }

}
$(document).ready(function() {
            $(".config-msg-p").click(function(e) {          
                e.preventDefault();
                $("div#config-msg").toggle();
            });
            $(document).mouseup(function(e) {
                if($(e.target).parent(".config-msg-p").length==0) {
                    $("div#config-msg").hide();
                }
            });            
            
        });
</script>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...