jquery sharepoint-2010

jquery para mostrar la miniatura. no funciona



sharepoint-2010 (2)

Este jQuery debería darme una vista en miniatura, pero no es así. ¿Alguna idea de lo que estoy haciendo mal? Simplemente me da el sharepoint icjpg.gif en un tamaño más grande.

<SCRIPT language=javascript src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type=text/javascript></SCRIPT> <SCRIPT defer type=text/javascript> $(document).ready(function(){ $("img[src$=''icjpg.gif'']").each(SetImage); }); function SetImage() { $(this).attr(''height'',''100''); $(this).attr(''src'',$(this).parent().attr(''href'')); } </SCRIPT>


El siguiente código funciona. Debes ingresar la url relativa a la biblioteca

<script type="text/javascript"> $(document).ready(function(){ $("img[src$=''icjpg.gif'']").each(SetImage); }); function SetImage() { $(this).attr(''height'',''100''); $(this).attr(''src'',''/managedpath/sitename/library/''+$(this).attr(''title'')); } </script>


<script type=text/javascript> $(document).ready(function(){ $("img[src*=icjpg.gif]").each(SetImage); }); function SetImage() { $(this).css({''height'':''100px'', "width":"auto"}); $(this).attr(''src'',$(this).parent().attr(''href'')); } </script>