Jump to content
Fórum Script Brasil
  • 0

input hidden onchange


Renan Paiva

Question

2 answers to this question

Recommended Posts

  • 0

Até onde eu sei change não funciona com o elemento input com o atributo type hidden. Você pode atribuir o evento change ao elemento e chama-lo manualmente.

Exemplo simples em jQuery (você pode testar neste jsFiddle):

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <div id="notificacao"><p></p></div>
        <input id="visivel" type="text" value="" />
        <input id="invisivel" type="hidden" value="" />
        &lt;script>
        $(function () {
            var visivel = $('#visivel'),
                invisivel = $('#invisivel'),
                notificacao = $('#notificacao > p');

            visivel.on('change', function () {
                invisivel.val($(this).val());
                invisivel.trigger('change');
            });
            
            invisivel.on('change', function () {
                var output = 'Visível = "' + visivel.val()
                    + '"; Invisivel = "' + invisivel.val() + '"';
                notificacao.html(output);
            });
        });
        </script>
    </body>
</html>

Um abraço.

Link to comment
Share on other sites

  • 0

Willian primeiramente muito obrigado pela sua resposta.

entendi a questao é que você esta fazendo isso pela primeira parte não é?, que é visivel pelo evento dela você esta chamando o trigger do invisible.

vou tentar explicar o q eu quero.

Tenho 1 app onde tenho 1 grid com o cadastro ai o usuario clica em alterar ou incluir abro um window.open ai pelo window open estou atualizando 1 campo para fazer o postback do opener para atualizar o grid.

tem como quando fechar o popup eu disparar algum evento no opener?

abraços e muito obrigado pela ajuda

Link to comment
Share on other sites

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...