Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(document).ready(function() {
  2.             $.each($('img'), function(rIdx, rValue) {
  3.                 var vValue = $(rValue);
  4.                 console.log(rIdx, rValue, vValue, vValue.context);
  5.                 //$(rValue).attr('width' ,(vValue[0].clientWidth * 0.7));
  6.                 //$(rValue).attr('height', (vValue[0].clientHeight * 0.7));
  7.             });
  8.         });