Simpsons 0 Denunciar post Postado Janeiro 25, 2013 Olá a todos. Eu tenho esse codigo: <select name="fancySelect" class="makeMeFancy" ONCHANGE="location = this.options[this.selectedIndex].value;"> <option value="http://www.google.com.br" target="conteudo" data-icon="img/products/iphone.png" data-html-text="Google">Google</option> <option value="http://www.microsoft.com.br" target="conteudo" data-icon="img/products/ipod.png" data-html-text="Microsoft">Microsoft</option> </select> Eu queria selecionar a opção, e abrir em uma iframe chamado ( conteudo ); Obrigado Compartilhar este post Link para o post Compartilhar em outros sites
Murilo Camargos 1 Denunciar post Postado Janeiro 25, 2013 <select name="fancySelect" class="makeMeFancy" ONCHANGE="conteudo.location = this.value"> <option value="http://www.google.com.br" target="conteudo" data-icon="img/products/iphone.png" data-html-text="Google">Google</option> <option value="http://www.microsoft.com.br" target="conteudo" data-icon="img/products/ipod.png" data-html-text="Microsoft">Microsoft</option> </select> <iframe src="" frameborder="0" name="conteudo"></iframe> Aqui deu certo assim. Compartilhar este post Link para o post Compartilhar em outros sites
hinom 5 Denunciar post Postado Janeiro 26, 2013 outra forma onchange="window.open(this.value,'conteudo');" Compartilhar este post Link para o post Compartilhar em outros sites