| > <script language="javascript">
> var imageID =
> '#ctl00_ctl00_MainContent_uxProduct_CatalogItemImage
> ,
> #ctl00_ctl00_MainContent_uxProduct_SingleFramedItemC
> ontrol1_ImageCover,
> #ctl00_ctl00_MainContent_uxProduct_DoubleFramedItemC
> ontrol1_ImageCover1,
> #ctl00_ctl00_MainContent_uxProduct_DoubleFramedItemC
> ontrol1_ImageCover2';
> $(function() {
> $("#large-image").css("opacity", 0);
> $(imageID).mouseover(
> function() {
> $this = $(this);
> $("#large-image")
> .attr("src",
> $this.attr("src").toLowerCase().replace("medium",
> "large"))
> .css("left", $this.position().left +
> $this.width() + 25)
> .stop().show().fadeTo(350, 1);
> })
> .mouseout(function() {
> $("#large-image").stop().fadeTo(350, 0,
> function() { $(this).hide(); });
> });
> });
> </script>
FAQ: Javascript no full support.
If the code does not contains a URL, then HTT(extended parsing) can't handle
it.
How would you figure the actual URL from the above code? | |