Sunnywife
Member
Posted 6 months ago #
It looks like this plugin would do exactly what I want. But I cannot get it to work. I tried to use it here:
http://www.sunnyguy.com/?cat=4
In the post of May 13, 2009, I put this:
<!--[slideshow]-->
<img title="dscf0004" src="http://www.sunnyguy.com/wp-content/uploads/2009/05/dscf0004-300x263.jpg" alt="poes Bonita" />
<img title="p1040006detail" src="http://www.sunnyguy.com/wp-content/uploads/2009/05/p1040006detail-300x217.jpg" alt="kater Zorro" />
<img title="p4150046uitsn" src="http://www.sunnyguy.com/wp-content/uploads/2009/05/p4150046uitsn.jpg" alt="poes Rozepoot" />
<!--[/slideshow]-->
...but nothing happens.
I read the author's homepage but I still don't understand what I'm doing wrong.
Sunnywife
Member
Posted 6 months ago #
Phew! It took some time but it's working now.
I had to resort to calling the script in the non-fancy way, that is: I removed the [slideshow] tags and instead did:
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery('#slidee').slideshow({playframe:false}).playSlide();
});
</script>
after adding div tags around my images, obviously (so the images are in a div with the id 'slidee').
The 'no conflict' thing is what did it. This piece was very helpful:
http://devoracles.com/jquery-error-documentready-is-not-a-function-sure
AntonShevchuk
Member
Posted 5 months ago #
@Sunnywife: Thx for your response...