How to build simple jQuery image slider with sliding or opacity effect?

Before inspecting examples, you should know two jQuery functions which i used most. index() returns value is an integer indicating the position of the first element within the jQuery object relative to its sibling elements. eq() selects of an element based on its position (index value). Basicly i take selected trigger element’s index value and … Read more

Creating first jQuery slideshow plugin, converting from Javascript

You can use nivo slider . You just have to mention description of an image in alt attribute and title of an image in title attribute. And just attach the plugin to your wrapper element: $(window).load(function() { $(‘#main’).nivoSlider(); }); Edit1: A simple way to create such plugin jQuery.fn.imgSlider = function( options ) { // default … Read more