Este es mi codigo:
Código Javascript:
Ver original
<script> $(document).ready(function(){ $("#imagen").load(function(){ var ancho= $("#imagen").width(); var alto= $("#imagen").height(); if(ancho>990 && ancho>alto) $("#imagen").attr("width","990px"); else if(ancho>990 && ancho<alto) $("#imagen").attr("height","560px"); else if(alto>560 && ancho<alto) $("#imagen").attr("height","560px"); else if(alto>560 && ancho>alto) $("#imagen").attr("width","990px"); if(ancho>990 || alto>560 && ancho==alto) $("#imagen").attr("height","560px"); }) }) </script>
Ojala me ayuden a hacerlo funcionar cuando menos en ie y firefox.