No, none of that really helps. I've seen all of that already more or less either directly or from the code it produces. What I'm looking for is javascript something like so:
Code:
$(.'slider).slide(maybe some stuff here)
The $
might be jQuery or some other variable representing jQuery instead, the .slide
is probably .somethingelse, and even the ('.slider')
might be expressed as a variable, so it could be very hard to find. In fact it is very hard to find because I'm good at finding stuff like that and I can't find it. At least not yet and I've looked everywhere I can think of for it. I'm like 99% sure it's there somewhere in some form because the slider appears to use jQuery. But I have another idea where we don't need to find it - to put a second slider up there that doesn't get run because it's not inside a class="slider" div, and is not seen because we make it not seen. We can then take its contents and swap it in and out of the working slider. As long as all of the dimensions as well as the number of items are the same as the working slider (they were when I looked at it before), it should be fine.
But I see you took down the second slider. What might help me is if you put it back up, but make it slightly different, it was:
Code:
<div class="slider"><!-- Slider item --> <div class="slider-item"> <div class="slider-item-small"> <a href="/publ/genre/adventure/hotel_transylvania_2012/5-1-0-30"> <img src="http://animationddd.ucoz.net/_pu/0/80058646.png" width="91" height="61" alt="Hotel Transylvania (2012)" /> <br><div align="center"><font size="3">Hotel Transylvania (2012)</font></div> </a> </div> <div class="slider-item-big"> <img src="http://animationddd.ucoz.net/_pu/0/80058646.png" width="607" height="294" alt="Hotel Transylvania (2012)" /> <h2>Hotel Transylvania (2012)</h2> </div> </div><!-- Slider item --> <div class="slider-item"> <div class="slider-item-small"> <a href="/publ/genre/action/brave_2012/3-1-0-29"> <img src="http://animationddd.ucoz.net/_pu/0/49804586.jpg" width="91" height="61" alt="Brave (2012)" /> <br><div align="center"><font size="3">Brave (2012)</font></div> </a> </div> <div class="slider-item-big"> <img src="http://animationddd.ucoz.net/_pu/0/49804586.jpg" width="607" height="294" alt="Brave (2012)" /> <h2>Brave (2012)</h2> </div> </div><!-- Slider item --> <div class="slider-item"> <div class="slider-item-small"> <a href="/publ/genre/short_film/day_night_2010/2-1-0-28"> <img src="http://animationddd.ucoz.net/_pu/0/46489362.png" width="91" height="61" alt="Day & Night (2010)" /> <br><div align="center"><font size="3">Day & Night (2010)</font></div> </a> </div> <div class="slider-item-big"> <img src="http://animationddd.ucoz.net/_pu/0/46489362.png" width="607" height="294" alt="Day & Night (2010)" /> <h2>Day & Night (2010)</h2> </div> </div><!-- Slider item --> <div class="slider-item"> <div class="slider-item-small"> <a href="/publ/genre/comedy/partly_cloudy_2009/4-1-0-27"> <img src="http://animationddd.ucoz.net/_pu/0/02610359.png" width="91" height="61" alt="Partly Cloudy (2009)" /> <br><div align="center"><font size="3">Partly Cloudy (2009)</font></div> </a> </div> <div class="slider-item-big"> <img src="http://animationddd.ucoz.net/_pu/0/02610359.png" width="607" height="294" alt="Partly Cloudy (2009)" /> <h2>Partly Cloudy (2009)</h2> </div> </div></div>
At least that's the HTML code that was generated for it. Bring that back, but make the beginning like so (additions/changes highlighted):
Code:
<div class="slider2" style="position:absolute; visibility:hidden;"
>><!-- Slider item --> <div class="slider-item"> <div class="slider-item-small"> <a href="/publ/genre/adventure/hotel_transylvania_2012/5-1-0-30"> <img src="http://animationddd.ucoz.net/_pu/0/80058646.png" width="91" height="61" alt="Hotel Transylvania (2012)" /> <br><div ali . . .
And then I can try working with it. Ordinarily I would create a mock up on my local server. But I've tried that already and it won't load. There are one or more things on that page that apparently require it to be on the server that it is on.
But, if you can put that markup back with the slight change I'm asking for, I should be able to manipulate it via javascript from the console. If I can get it to do what we want from there, I can translate that into an on page script. That's how I did it the first time.
Bookmarks