I have a script that goes out to my web browser to get the JSQuery but due to high security on my work laptop since a recent upgrade it is now blocked. This what I had, can anyone give me the full JSQuery part (I can't download either due to high security.
<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>