Skip to content

Instantly share code, notes, and snippets.

@santiagobasulto
Created February 21, 2012 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santiagobasulto/1873617 to your computer and use it in GitHub Desktop.
Save santiagobasulto/1873617 to your computer and use it in GitHub Desktop.
Reducidor de tamaño para imgs en subdivx
<script type="text/javascript">
$(window).load(function(){
$(".mensaje img").each(function(i,e){
var je = $(e)
if(je.width()>"550"){
je.attr("width","550px");
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment