javascript - Adipoli jQuery Image Hover Effects don't work -


i have problem adipoli plugin - doesn't want work though have done seems correct. code follows:

head section:

    <script src="js/jquery-1.7.2.min.js"></script> <script src="js/jquery-ui-1.10.3.custom.min.js"></script> <script src="js/lightbox.js"></script> <script src="js/slider.js"></script> <script src="js/jquery.adipoli.min.js"></script> <script> $('.shadow').adipoli({     'starteffect' : 'normal',     'hovereffect' : 'popout' }); </script> 

content section:

echo '"<a><img class="shadow" src="photos/thumbs/thumb_'.$image['filename'].'" alt="" /></a>';  

along adipoli hover effect, want make simple css drop shadow effect , works in comparison hover effect. lightbox , slider script work well. useful ideas appreciated, useful ones. ;-)

$(document).ready(function() {     $('.shadow').adipoli({         'starteffect' : 'normal',         'hovereffect' : 'popout'     }); }); 

wrap make sure element exists before try selecting it.


Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -