HTTrack Website Copier
Free software offline browser - FORUM
Subject: Re: Collecting images from site using mouseover java
Author: William Roeder
Date: 03/05/2011 19:01
 
> <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?
 
Reply Create subthread


All articles

Subject Author Date
Collecting images from site using mouseover java

03/05/2011 17:49
Re: Collecting images from site using mouseover java

03/05/2011 19:01
Re: Collecting images from site using mouseover java

03/05/2011 22:04
Re: Collecting images from site using mouseover java

03/06/2011 15:01
Re: Collecting images from site using mouseover java

03/18/2011 14:37




8

Created with FORUM 2.0.11