You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
O exemplo estava assim:
new dgCidadesEstados({
cidade: document.getElementById('cidade3'),
estado: document.getElementById('estado3'),
change: true})
Funcionou assim IE 7:
new dgCidadesEstados(document.getElementById('estado3'),
document.getElementById('cidade3'), true);
Um abraço
Original issue reported on code.google.com by [email protected] on 20 Mar 2009 at 2:42
The text was updated successfully, but these errors were encountered:
Fiz isso que você disse não deu certo:
<input type="text" name="estado" id="estado" value="Selecione um estado" />
<input type="text" name="cidade" id="cidade" value="Selecione uma cidade" />
<script language="JavaScript" type="text/javascript" charset="utf-8">
new dgCidadesEstados(document.getElementById('estado3'),
document.getElementById('cidade3'), true);
</script>
esse "new dgCidadesEstados(document.getElementById('estado3'),
document.getElementById('cidade3'), true);" eh pra versao antiga
a versao nova vc cria assim, por exemplo:
window.onDomReady(function() {
new dgCidadesEstados({
estado: document.getElementById('estado'),
cidade: document.getElementById('cidade'),
estadoVal: 'SP',
cidadeVal: 'São Paulo'
});
});
o problema do IE7 foi resolvido pelo fabricioferracioli, em:
http://code.google.com/p/cidades-estados-js/issues/detail?id=1#c1
Original comment by roberto.cr on 29 May 2009 at 6:33
Original issue reported on code.google.com by
[email protected]
on 20 Mar 2009 at 2:42The text was updated successfully, but these errors were encountered: